.service-hero {
  padding: 40px 24px;
}

.service-hero-inner {
  max-width: 1400px;
  margin: auto;
  background: #1e3163;
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 520px;
}

.service-hero-left {
  padding: 90px 80px;
  color: #fff;
  background-image: url("../images/grid.svg");
  background-size: 240px;
}

.service-hero-left h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.service-hero-left p {
  max-width: 520px;
  color: #dbe2ff;
  margin-bottom: 36px;
}

.btn-primary {
  display: inline-flex;
  gap: 12px;
  padding: 14px 26px;
  background: #fff;
  color: #1e3163;
  border-radius: 999px;
  text-decoration: none;
}

.btn-primary span {
  width: 28px;
  height: 28px;
  background: #1e3163;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.service-hero-right {
  position: relative;
}

.service-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(30, 49, 99, 0.15), rgba(30, 49, 99, 0.85));
}

.services-page {
  padding: 120px 24px;
  text-align: center;
}

.section-tag {
  display: inline-block;
  color: #1e3163;
  font-size: 14px;
  margin-bottom: 12px;
}

.services-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.services-desc {
  max-width: 860px;
  margin: 0 auto 80px;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.services-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.service-card {
  background: #fafafa;
  border-radius: 22px;
  padding: 20px 20px 32px;
  transition: all 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 18px;
  color: #1e3163;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 22px;
}

.read-more {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e5e5e5;
  text-decoration: none;
  font-size: 13px;
  color: #111;
  transition: all 0.3s ease;
}

.read-more:hover {
  background: #1e3163;
  color: #fff;
  border-color: #1e3163;
}

/* Mobile */
@media (max-width: 900px) {
  .services-title {
    font-size: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}


/* FAQ */

.faq-section {
  padding: 120px 24px;
}

.faq-wrap {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.faq-list {
  text-align: left;
  border-top: 1px solid #eee;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question {
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

/* Mobile */

@media (max-width: 900px) {
  .service-hero-inner {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 30px;
  }
}
