.service-page {
  margin-bottom: 8rem;
}

.service-hero {
  position: relative;
  padding: 8rem 0;
  color: #fff;
  text-align: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 3rem;
}

.service-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.7)
  );
  pointer-events: none;
}

.service-header {
  position: relative;
  z-index: 1;
}

.service-icon-large {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service-tagline {
  font-size: 1.4rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.service-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.service-intro {
  margin-bottom: 5rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-text h2 {
  font-size: 2.5rem;
  color: #2d3748;
  margin-bottom: 1.5rem;
}

.intro-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4a5568;
}

.intro-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.intro-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.intro-image:hover img {
  transform: scale(1.05);
}

.service-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.feature-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

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

.feature-card h3 {
  color: #2d3748;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-card p {
  color: #4a5568;
  line-height: 1.6;
}

.service-benefits {
  background: #f7fafc;
  padding: 4rem;
  border-radius: 12px;
  margin-bottom: 5rem;
}

.service-benefits h2 {
  color: #2d3748;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.benefits-list li {
  display: flex;
  align-items: center;
  color: #4a5568;
  font-size: 1.1rem;
  line-height: 1.6;
}

.benefits-list li::before {
  content: "✓";
  color: #f5a623;
  font-weight: bold;
  margin-right: 1rem;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  color: #2d3748;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.card-content p {
  color: #4a5568;
  line-height: 1.6;
}

.service-cta {
  text-align: center;
  background: #2d3748;
  color: #fff;
  padding: 4rem;
  border-radius: 12px;
}

.service-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-cta p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background: #f5a623;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #e69512;
  transform: translateY(-2px);
}

/* Pricing Tables */
.pricing-section {
  margin-bottom: 5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.pricing-card.featured {
  position: relative;
  border: 2px solid #f5a623;
}

.featured-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #f5a623;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.price-amount {
  font-size: 2.5rem;
  color: #2d3748;
  font-weight: 700;
  margin: 1rem 0;
}

.price-period {
  color: #718096;
  font-size: 1rem;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

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

.price-features li::before {
  content: "✓";
  color: #48bb78;
  margin-right: 0.5rem;
  font-weight: bold;
}

@media (max-width: 1024px) {
  .service-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .service-hero {
    padding: 6rem 0;
  }

  .service-header h1 {
    font-size: 2.5rem;
  }

  .service-tagline {
    font-size: 1.2rem;
  }

  .service-features {
    grid-template-columns: 1fr;
  }

  .intro-text h2 {
    font-size: 2rem;
  }

  .service-benefits {
    padding: 2rem;
  }
}
