.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 {
  background: #ffffff;
  padding:10px 16px 120px;
}

.faq-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.faq-top {
  text-align: center;
  margin-bottom: 28px;
}

.faq-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f172a;
}

.faq-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #1f2a5a;
}

.faq-title {
  margin: 16px 0 0;
  font-family: var(--font-heading, "Hedvig Letters Serif", Georgia, serif);
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12;
  color: #0b1220;
}

/* LIST */
.faq-list {
  margin: 26px auto 0;
  max-width: 620px;
  border-top: 1px solid #eef2f6;
}

.faq-item {
  border-bottom: 1px solid #eef2f6;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 16px 0;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  text-align: left;
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #1f2a5a;
  color: #ffffff;
  font-size: 14px;
  line-height: 1;

  transform: rotate(0deg);
  transition: transform 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-size: 13px;
  line-height: 1.7;
  color: #475569;
  padding: 0;
}

.faq-item.active .faq-answer {
  max-height: 240px;
  padding: 0 0 16px 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

@media (max-width: 640px) {
  .faq-list {
    max-width: 100%;
  }
  .faq-question {
    font-size: 14px;
  }
}

