*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --sage: #7a9e7e;
  --sage-light: #b5ceb8;
  --sage-dark: #4d7253;
  --cream: #faf7f2;
  --warm-white: #ffffff;
  --text: #2c2c2c;
  --text-muted: #6b6b6b;
  --accent: #c4956a;
  --border: #e8e2d9;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
}

.topbar {
  background: var(--sage-dark);
  color: #fff;
  text-align: center;
  font-size: 0.82rem;
  padding: 9px 20px;
  letter-spacing: 0.02em;
}

.topbar a {
  color: #d8ecd9;
  text-decoration: none;
}

.topbar a:hover {
  text-decoration: underline;
}

nav {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 72px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-mark {
  display: block;
  flex: 0 0 auto;
}

.logo-mark-header {
  width: 68px;
}

.site-logo {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

.site-logo-header {
  margin: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
}

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--sage-dark);
}

.nav-links a.active-link,
.nav-links a[aria-current="page"] {
  color: var(--sage-dark);
}

.nav-cta {
  background: var(--sage);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 40px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--sage-dark) !important;
  color: #fff !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  background: linear-gradient(135deg, #eef4ee 0%, #f7f3ed 60%, #eaf0ea 100%);
  padding: 80px 24px;
  overflow: hidden;
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--sage-dark);
}

.hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 440px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--sage-dark);
  color: #fff;
}

.btn-primary:hover {
  background: var(--sage);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--sage-dark);
  border: 1.5px solid var(--sage-dark);
}

.btn-secondary:hover {
  background: var(--sage-dark);
  color: #fff;
  transform: translateY(-1px);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 460px;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--warm-white);
  border-radius: 16px;
  padding: 18px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.hero-badge-text {
  font-size: 0.82rem;
}

.hero-badge-text strong {
  display: block;
  color: var(--sage-dark);
  font-size: 1rem;
}

.about {
  background: var(--warm-white);
  padding: 100px 24px;
}

.about-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-label--spaced {
  margin-top: 2.5rem;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 20px;
}
.section-title--sm {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  color: var(--sage-dark);
  margin-bottom: 1.5rem;
}

.section-body {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 32px;
}

.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 44%;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.about-image .image-placeholder {
  width: 100%;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, #eef4ec, #dfeadf);
  color: var(--sage-dark);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.features {
  background: var(--cream);
  padding: 100px 24px;
}

.features-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--warm-white);
  border-radius: 20px;
  padding: 40px 32px;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s;
}

.feature-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.feature-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--sage-light), #d4e8d5);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
}

.feature-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.75;
}

.cta-banner {
  background: linear-gradient(135deg, var(--sage-dark), var(--sage));
  padding: 80px 24px;
  text-align: center;
  color: #fff;
}

.cta-banner-inner {
  max-width: 680px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 16px;
}

.cta-banner p {
  opacity: 0.85;
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn + .btn {
  margin-left: 16px;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--sage-dark);
}

.cta-banner .btn-primary:hover {
  background: var(--cream);
  transform: translateY(-1px);
}

.btn-white {
  background: #fff;
  color: var(--sage-dark);
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-1px);
}

.btn-white-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.btn-white-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-1px);
}

footer {
  background: #1e2e20;
  color: #a8bfaa;
  padding: 70px 24px 30px;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}

.logo-mark-footer {
  width: 84px;
  margin-bottom: 16px;
}

.site-logo-footer {
  margin: 0;
  filter: brightness(0) invert(1) opacity(0.7);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
  opacity: 0.7;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #a8bfaa;
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 10px;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: #a8bfaa;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: #fff;
}

.footer-col ul a.active-link,
.footer-col ul a[aria-current="page"] {
  color: #fff;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a8bfaa;
  text-decoration: none;
  transition: all 0.2s;
}

.social-btn:hover {
  border-color: var(--sage-light);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}


.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.5;
}

.footer-version {
  display: inline-block;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  letter-spacing: 0.04em;
}

.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.wa-fab svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ── Inner-page hero ── */
.page-hero {
  background: linear-gradient(135deg, #eef4ee 0%, #f7f3ed 60%, #eaf0ea 100%);
  padding: 80px 24px 60px;
  text-align: center;
}

.page-hero-inner {
  max-width: 680px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 18px;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--sage-dark);
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ── Service detail cards ── */
.services-detail {
  background: var(--warm-white);
  padding: 100px 24px;
}

.services-detail-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-detail-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 44px 36px;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s;
}

.service-detail-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.service-detail-card .feature-icon {
  margin-bottom: 20px;
}

.service-detail-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--text);
}

.service-detail-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ── Counsellor profile ── */
.counsellor-profile {
  background: var(--cream);
  padding: 100px 24px;
}

.counsellor-profile-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.counsellor-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 44%;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.counsellor-photo .image-placeholder {
  width: 100%;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, #eef4ec, #dfeadf);
  color: var(--sage-dark);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.counsellor-details h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.counsellor-title {
  color: var(--sage-dark);
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.counsellor-details .section-body {
  margin-bottom: 20px;
}

/* ── Contact cards ── */
.contact-section {
  background: var(--warm-white);
  padding: 100px 24px;
}

.contact-section-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.contact-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 40px 32px;
  border: 1px solid var(--border);
  text-align: center;
  transition: box-shadow 0.25s, transform 0.25s;
}

.contact-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.contact-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.contact-card-link:hover {
  text-decoration: none;
}

.contact-card-link:focus-visible {
  outline: 3px solid var(--sage-light);
  outline-offset: 4px;
}

.contact-card .feature-icon {
  margin: 0 auto 18px;
}

.contact-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.contact-card-link-text {
  color: var(--sage-dark);
  font-weight: 500;
}

/* ── Testimonial cards ── */
.testimonial-card {
  background: var(--warm-white);
  border-radius: 20px;
  padding: 40px 32px;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s;
}

.testimonial-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.testimonial-quote-mark {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  color: var(--sage-light);
  line-height: 1;
  margin-bottom: 12px;
}

.testimonial-card .testimonial-body {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
  font-style: normal;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* ── Values list (about page) ── */
.values-list {
  list-style: none;
  margin-top: 8px;
}

.values-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.values-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-size: 0.8rem;
  top: 3px;
}


/* ── Prose section (long-form content) ─────────────────── */
.prose-section {
  padding: 56px 40px 72px;
}
.prose-section--warm {
  background: var(--warm-white);
}
.prose-section-inner {
  max-width: 780px;
  margin: 0 auto;
}
.prose-section h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: var(--sage-dark);
  margin: 2.5rem 0 1rem;
  line-height: 1.3;
}
.prose-section h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  color: var(--text);
  margin: 2rem 0 0.75rem;
}
.prose-section p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.prose-section ul,
.prose-section ol {
  margin: 0 0 1.5rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.85;
}
.prose-section li { margin-bottom: 0.5rem; }
.prose-section .lead {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ── FAQ items (details/summary) ────────────────────────── */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 40px 72px;
}
.faq-list-header {
  text-align: center;
  padding: 56px 40px 32px;
}
details.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 10px;
  background: var(--warm-white);
  transition: box-shadow 0.2s;
}
details.faq-item:last-child {
  margin-bottom: 0;
}
.link-plain {
  color: inherit;
  text-decoration: none;
}
details.faq-item[open] {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
details.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: "+";
  color: var(--sage);
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s;
}
details.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 0.975rem;
}
.faq-answer p { margin-bottom: 0.75rem; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ── Credential list (Esther's profile) ─────────────────── */
.credential-section {
  background: var(--warm-white);
  padding: 72px 40px;
}
.credential-section-inner {
  max-width: 780px;
  margin: 0 auto;
}
.credential-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}
.credential-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.credential-list li:last-child { border-bottom: none; }
.credential-list--centered li { align-items: center; }
.credential-list--centered .cred-icon { margin-top: 0; }
.cred-icon {
  color: var(--sage);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.cred-title {
  font-weight: 500;
  color: var(--text);
  display: block;
  margin-bottom: 2px;
}

/* ── Placeholder badge (items pending Esther's review) ──── */
.placeholder-notice {
  display: inline-block;
  background: #fff8e1;
  color: #7a5500;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid #ffe082;
  margin-left: 8px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ── Intro block (service / approach pages) ──────────────── */
.intro-section {
  background: var(--warm-white);
  padding: 72px 40px;
}
.intro-section-inner {
  max-width: 780px;
  margin: 0 auto;
}
.intro-section p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.intro-section h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  color: var(--sage-dark);
  margin: 2rem 0 1rem;
}
.intro-section ul {
  margin: 0 0 1.5rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.85;
}
.intro-section li { margin-bottom: 0.5rem; }

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .hero-inner,
  .about-inner {
    grid-template-columns: 1fr;
  }

  .hero-image {
    display: none;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-version {
    display: block;
    margin-left: 0;
    margin-top: 8px;
    padding-left: 0;
    border-left: 0;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--warm-white);
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 16px 24px 24px;
    gap: 0;
    z-index: 99;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    display: block;
  }

  .nav-links a {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }

  .nav-links li:last-child a {
    border-bottom: none;
    margin-top: 12px;
    text-align: center;
    padding: 12px 20px;
  }

  .services-detail-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .counsellor-profile-inner {
    grid-template-columns: 1fr;
  }

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


  .prose-section {
    padding: 40px 20px 56px;
  }

  .prose-section-inner {
    padding: 0;
  }

  .faq-list {
    padding: 0 20px 56px;
  }

  .faq-list-header {
    padding: 40px 20px 24px;
  }

  .intro-section {
    padding: 48px 20px;
  }

  .credential-section {
    padding: 48px 20px;
  }

  .credential-section-inner {
    padding: 0;
  }

  details.faq-item summary {
    padding: 16px 18px;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 18px 16px;
  }
}
