/* Hero Section */
.hero {
  background: linear-gradient(
      to right,
      rgba(26, 26, 46, 0.9),
      rgba(26, 26, 46, 0.8)
    ),
    url("/api/placeholder/1200/500") center/cover no-repeat;
  color: var(--light);
  padding: 160px 0 80px;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* Main Content */
.main-content {
  padding: 80px 0;
}

.service-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.service-image {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.service-text h2 {
  font-size: 36px;
  margin-bottom: 25px;
  color: var(--dark);
}

.service-text p {
  margin-bottom: 25px;
  font-size: 18px;
}

/* Process Section */
.process-section {
  background-color: var(--gray);
  padding: 80px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: 36px;
  color: var(--dark);
  margin-bottom: 15px;
}

.section-heading p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.step-card {
  background-color: var(--light);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--dark);
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
}

.benefit-icon {
  min-width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin-right: 20px;
}

.benefit-text h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--dark);
}

/* Features Section */
.features-section {
  background-color: var(--gray);
  padding: 80px 0;
}

.features-list {
  margin-top: 50px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  background-color: var(--light);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

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

.feature-icon {
  min-width: 50px;
  height: 50px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  margin-right: 20px;
}

.feature-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--dark);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
}

.faq-list {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  background-color: var(--gray);
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 20px 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 130px 0 60px;
  }

  .hero h1 {
    font-size: 36px;
  }

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

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