* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.services-container {
  margin: 0px auto;
  padding: 10px;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

.services-box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}

.header {
  margin-top: 80px;
  text-align: center;
  margin-bottom: 50px;
  color: #ffffff;
}

.header h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  background: linear-gradient(45deg, #ffffff, #e0e6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.service-category {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.category-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.category-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 1.5rem;
  color: white;
}

.category-title {
  font-size: 1.5rem;
  color: #333;
  font-weight: 600;
}

.service-list {
  list-style: none;
}

.service-item {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.service-item:last-child {
  border-bottom: none;
}

.service-item:hover {
  color: #667eea;
}

.service-item::before {
  content: "✓";
  color: #28a745;
  font-weight: bold;
  margin-right: 10px;
  width: 20px;
}

.cta-section {
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-section h2 {
  color: #333;
  margin-bottom: 15px;
  font-size: 2rem;
}

.cta-section p {
  color: #666;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.contact-info {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  margin-top: 30px;
  text-align: center;
  color: white;
}

.contact-info h3 {
  margin-bottom: 15px;
}

.contact-info p {
  margin: 5px 0;
}

@media (max-width: 768px) {
  .header h1 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-category {
    padding: 20px;
  }
}
