.services-hero {
  padding: 10rem 2rem 6rem;
  background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
  color: white;
  text-align: center;
}

.services-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.services-hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Service Categories */
.service-category {
  padding: 6rem 2rem;
  background: white;
}

.service-category:nth-child(even) {
  background: #f8fafc;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.category-header {
  text-align: center;
  margin-bottom: 4rem;
}

.category-header h2 {
  font-size: 2.5rem;
  color: #1a365d;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.category-header p {
  font-size: 1.125rem;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 2rem;
}

.service-content h3 {
  font-size: 1.5rem;
  color: #1a365d;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.service-content p {
  color: #4a5568;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.feature-list li {
  padding: 0.5rem 0;
  color: #4a5568;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-list li::before {
  content: "✓";
  color: #2b6cb0;
  font-weight: bold;
}

/* CTA Section */
.cta-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: white;
  color: #1a365d;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: transform 0.3s ease;
  margin-top: 2rem;
}

.btn:hover {
  transform: translateY(-2px);
  background: #f8fafc;
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pricing-table th,
.pricing-table td {
  padding: 1.5rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.pricing-table th {
  background: #1a365d;
  color: white;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-hero h1 {
    font-size: 2.5rem;
  }

  .nav-links {
    display: none;
  }

  .service-category {
    padding: 4rem 1.5rem;
  }

  .category-header h2 {
    font-size: 2rem;
  }
}
