:root {
  --service-max-width: 1100px;
}

.service-hero {
  padding: 72px 24px 36px;
  background: linear-gradient(180deg, rgba(201, 162, 77, 0.10), rgba(255, 255, 255, 0));
}

.service-hero-inner {
  max-width: var(--service-max-width);
  margin: 0 auto;
}

.service-breadcrumb {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.service-breadcrumb a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 162, 77, 0.35);
}

.service-breadcrumb a:hover {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

.service-hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0 0 10px 0;
}

.service-hero p {
  max-width: 70ch;
  margin: 0 0 22px 0;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.service-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.service-main {
  max-width: var(--service-max-width);
  margin: 0 auto;
  padding: 36px 24px 72px;
}

.service-section {
  margin-top: 40px;
}

.service-section h2 {
  margin: 0 0 16px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.benefit-card {
  border: 1px solid rgba(28, 28, 28, 0.08);
  border-radius: 14px;
  padding: 16px;
  background: #fff;
}

.benefit-card h3 {
  margin: 0 0 8px 0;
  font-size: 1rem;
}

.benefit-card p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.panel {
  border: 1px solid rgba(28, 28, 28, 0.08);
  border-radius: 14px;
  padding: 18px;
  background: #fff;
}

.panel h3 {
  margin: 0 0 12px 0;
  font-size: 1rem;
}

.panel ul {
  margin: 0;
  padding-left: 18px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.faq-list details {
  border: 1px solid rgba(28, 28, 28, 0.08);
  border-radius: 14px;
  padding: 14px 16px;
  background: #fff;
  margin-bottom: 12px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-list p {
  margin: 10px 0 0 0;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.related-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.related-links a {
  display: inline-block;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(28, 28, 28, 0.10);
  text-decoration: none;
  color: var(--color-text);
  background: #fff;
}

.related-links a:hover {
  border-color: rgba(201, 162, 77, 0.45);
  color: var(--color-gold);
}

.service-cta-banner {
  margin-top: 44px;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(201, 162, 77, 0.35);
  background: linear-gradient(180deg, rgba(201, 162, 77, 0.10), rgba(255, 255, 255, 1));
}

.service-cta-banner h2 {
  margin: 0 0 8px 0;
}

.service-cta-banner p {
  margin: 0 0 16px 0;
  color: var(--color-text-muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
