:root {
  --primary: #00b3e4;
  --secondary: #ffa500;
  --deep-blue: #256ba2;
  --dark-blue: #1e5080;
  --text: #1a1a1a;
  --muted: #6b7280;
  --bg: #ffffff;
  --line: rgba(37, 107, 162, 0.14);
  --shadow: 0 16px 36px rgba(37, 107, 162, 0.08);
  --container: 1180px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--bg);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.topbar {
  background: var(--deep-blue);
  color: #fff;
  font-size: 0.9rem;
}

.topbar-inner {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  padding: 10px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(37, 107, 162, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  flex-shrink: 0;
}

.brand-logo {
  width: 140px;
  height: auto;
}

.brand-location {
  margin-left: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.site-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-cta,
.button-primary {
  background: var(--secondary);
  color: #fff;
}

.button-secondary {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--deep-blue);
}

.header-cta:hover,
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.gallery-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.2s;
}

.gallery-link:hover {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.hero-section,
.schools-section,
.programmes-section,
.funding-section,
.salamanca-section,
.moments-section,
.services-section,
.future-section,
.contact-section {
  padding: 78px 0;
}

.hero-section {
  background: #f5f6f8;
  border-bottom: 1px solid var(--line);
}

.hero-grid,
.city-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 32px;
}

.hero-grid,
.contact-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.hero-copy h1,
.section-header h2,
.contact-copy h2 {
  margin: 0;
  color: var(--deep-blue);
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 3.8vw, 3.4rem);
  line-height: 1.12;
  max-width: 13ch;
  letter-spacing: -0.02em;
}

.section-intro {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-text,
.section-header p,
.overview-main-card p,
.info-card p,
.programme-card p,
.process-card p,
.city-copy p,
.service-card p,
.future-panel p,
.contact-copy p,
.contact-box p,
.site-footer p {
  color: var(--muted);
  line-height: 1.85;
}

.hero-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-meta {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.hero-visual {
  position: relative;
}

.hero-image-card,
.info-card,
.programme-card,
.process-card,
.gallery-card,
.service-card,
.future-panel,
.contact-copy,
.contact-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-image-card {
  overflow: hidden;
  border-radius: 18px;
}

.hero-image-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.contact-points strong,
.contact-points strong,
.site-footer strong {
  display: block;
  color: var(--deep-blue);
}

.contact-points span,
.contact-points span,
.site-footer span {
  color: var(--muted);
  line-height: 1.7;
}

.section-header {
  max-width: 820px;
  margin: 0 0 34px;
}

.section-header h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.8rem);
  line-height: 1.18;
}

.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.info-grid,
.programme-grid,
.process-grid,
.services-grid {
  display: grid;
  gap: 22px;
}


.info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.programme-card,
.process-card,
.service-card,
.contact-copy,
.contact-box {
  padding: 28px;
}

.info-card h3,
.programme-card h3,
.process-card h3,
.service-card h3,
.contact-box h3 {
  margin: 0 0 10px;
  color: var(--deep-blue);
}

.programme-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sector-section {
  background: #1e5080;
  padding: 72px 0;
}

.sector-title {
  margin: 0 0 40px;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2;
  max-width: 18ch;
}

.sector-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 48px;
}

.sector-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
}

.sector-list li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--secondary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
}

.programme-number,
.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(37, 107, 162, 0.08);
  color: var(--deep-blue);
  font-weight: 700;
}

.programme-note {
  margin-top: 24px;
  color: var(--muted);
  line-height: 1.8;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.city-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.city-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.gallery-card {
  margin: 0;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 16px 18px;
  color: var(--deep-blue);
  font-weight: 600;
}

.city-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.city-para {
  margin: 0 0 0.2em;
  color: var(--muted);
  line-height: 1.85;
  font-size: 0.97rem;
}

.city-para:first-child {
  grid-column: 1 / -1;
  margin-bottom: 28px;
}

.salamanca-gallery-cta {
  margin-top: 40px;
  text-align: center;
}

.bullet-list {
  margin: 22px 0 0;
  padding-left: 18px;
  color: var(--text);
  line-height: 2;
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ── Agents ──────────────────────────────────────── */

.agents-section {
  padding: 88px 0;
  background: var(--text);
  color: #fff;
}

.agents-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.agents-intro {
  color: var(--secondary);
}

.agents-heading {
  margin: 0 0 28px;
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  line-height: 1.15;
  color: #fff;
}

.agents-lead {
  margin: 0 0 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  font-size: 0.97rem;
}

.agents-cta {
  margin-top: 12px;
  background: var(--secondary);
  color: #fff;
}

.agents-skills-title {
  margin: 0 0 20px;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.agents-list {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.agents-list li {
  padding-left: 20px;
  position: relative;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  font-size: 0.97rem;
}

.agents-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.agents-note {
  padding: 20px 22px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-top: 16px;
}

.agents-note strong {
  color: #fff;
}

.agents-note--exclusive strong {
  color: var(--secondary);
}

@media (max-width: 900px) {
  .agents-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ── Moments / gallery ───────────────────────────── */

.moments-header {
  margin-bottom: 36px;
}

.gallery-back {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

.gallery-back:hover {
  color: var(--primary);
}

.moments-heading {
  margin: 0;
  font-size: clamp(1.85rem, 3.4vw, 2.8rem);
  color: var(--deep-blue);
  line-height: 1.18;
}

.gallery-programme-block {
  margin-bottom: 64px;
}

.gallery-programme-title {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--deep-blue);
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.moments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 10px;
}

.moments-item {
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #f5f6f8;
}

.moments-item.wide {
  grid-column: span 2;
}

.moments-item img,
.moments-item video {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.moments-item:hover img,
.moments-item:hover video {
  transform: scale(1.04);
}

/* ── Lightbox ────────────────────────────────────── */

.moments-item img {
  cursor: pointer;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 60px 80px;
  box-sizing: border-box;
}

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  user-select: none;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--primary);
}

.lightbox-close {
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  font-size: 1.1rem;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  font-size: 1.4rem;
}

.lightbox-prev {
  left: 14px;
}

.lightbox-next {
  right: 14px;
}

@media (max-width: 600px) {
  .lightbox-inner {
    padding: 52px 10px 10px;
  }

  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }

  .lightbox-prev,
  .lightbox-next {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
}

.future-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  background: #fff;
}

.future-panel h2 {
  margin: 0;
  color: var(--deep-blue);
}

.future-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--deep-blue);
  font-weight: 600;
}

.tag.active {
  background: var(--deep-blue);
  border-color: var(--deep-blue);
  color: #fff;
}

.contact-points {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.site-footer {
  padding: 36px 0;
  background: #f5f6f8;
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

.footer-logo {
  width: 120px;
  margin-bottom: 12px;
  opacity: 0.75;
}

.site-footer p {
  color: var(--muted);
}

.site-footer strong {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 10px;
  display: block;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
}

.language-switcher {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.language-switcher button {
  min-width: 48px;
  height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--deep-blue);
  font-weight: 700;
  cursor: pointer;
}

.language-switcher button.is-active {
  background: var(--primary);
  color: #fff;
}

@media (max-width: 1100px) {
  .programme-grid,
  .process-grid,
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .header-inner,
  .hero-grid,
  .city-grid,
  .future-panel,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
  }

  .nav-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin: 12px 0 0;
    padding: 18px;
    border-radius: var(--radius-md);
    background: #fff;
    border: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .future-panel {
    display: grid;
  }
}

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

@media (max-width: 680px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .facts-grid,
  .info-grid,
  .programme-grid,
  .process-grid,
  .city-gallery,
  .city-body,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .city-para:first-child {
    grid-column: 1;
  }

  .moments-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .moments-item img,
  .moments-item video {
    height: 160px;
  }

  .hero-section,
  .schools-section,
  .programmes-section,
  .funding-section,
  .salamanca-section,
  .moments-section,
  .services-section,
  .future-section,
  .contact-section {
    padding: 64px 0;
  }

  .hero-copy h1 {
    font-size: 2.15rem;
  }

  .hero-image-card img {
    height: 320px;
  }
}

/* ── Footer bottom bar ───────────────────────────────────────── */
.footer-bottom {
  background: var(--dark-blue);
  padding: 14px 0;
}

.footer-bottom-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.footer-bottom-copy {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8125rem;
  margin: 0;
}

.footer-bottom-copy a {
  color: inherit;
  text-decoration: none;
  display: inline;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-self: end;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8125rem;
  display: inline;
  margin: 0;
  transition: color 0.2s;
}

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

@media (max-width: 680px) {
  .footer-bottom-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom-links {
    justify-self: start;
  }
}

/* ── Legal pages ─────────────────────────────────────────────── */
.legal-page {
  padding: 72px 0 80px;
}

.legal-content {
  max-width: 780px;
}

.legal-content h1 {
  font-size: 2rem;
  color: var(--deep-blue);
  margin: 0 0 6px;
}

.legal-last-updated {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0 0 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin: 36px 0 10px;
}

.legal-content p {
  line-height: 1.8;
  color: var(--text);
  margin: 0 0 14px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
  margin: 0 0 14px;
}

.legal-content li {
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--deep-blue);
}

.legal-content strong {
  font-weight: 600;
  color: var(--text);
}

.policy-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.policy-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: box-shadow 0.2s, border-color 0.2s;
  text-decoration: none !important;
}

.policy-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.policy-card-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.policy-card-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.policy-card-label {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
}

.policy-card-sub {
  font-size: 0.8125rem;
  color: var(--muted);
}

@media (max-width: 680px) {
  .policy-card-grid {
    grid-template-columns: 1fr;
  }
}

/* ── FAQ page ─────────────────────────────────────────────────────────────── */

.faq-hero {
  background: #f5f6f8;
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--line);
}

.faq-hero-inner {
  max-width: 720px;
}

.faq-hero h1 {
  font-size: clamp(1.85rem, 3.4vw, 2.8rem);
  color: var(--deep-blue);
  line-height: 1.18;
  margin: 6px 0 16px;
}

.faq-hero-text {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 580px;
}

.faq-section {
  padding: 72px 0 80px;
}

.faq-container {
  max-width: 820px;
}

.faq-category {
  margin-bottom: 52px;
}

.faq-category-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--deep-blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.faq-item[open] {
  box-shadow: var(--shadow);
  border-color: rgba(37, 107, 162, 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--deep-blue);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.15s;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  position: relative;
  transition: background 0.2s, transform 0.25s;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  background: #fff;
  border-radius: 2px;
}

.faq-icon::before {
  width: 10px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 10px;
  transition: transform 0.25s;
}

.faq-item[open] .faq-icon {
  background: var(--deep-blue);
}

.faq-item[open] .faq-icon::after {
  transform: rotate(90deg);
}

.faq-answer {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.faq-answer p { margin: 0 0 10px; }
.faq-answer p:last-child { margin-bottom: 0; }

.faq-answer ul {
  margin: 8px 0 10px 18px;
  padding: 0;
}

.faq-answer li {
  margin-bottom: 6px;
}

.faq-answer a {
  color: var(--primary);
  text-decoration: underline;
}

.faq-answer a:hover {
  color: var(--deep-blue);
}

.faq-cta {
  background: #f5f6f8;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  margin-top: 16px;
}

.faq-cta h2 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--deep-blue);
  margin: 6px 0 12px;
}

.faq-cta p {
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.75;
}

@media (max-width: 680px) {
  .faq-hero {
    padding: 52px 0 44px;
  }

  .faq-section {
    padding: 52px 0 60px;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 0.875rem;
  }

  .faq-answer {
    padding: 0 18px 18px;
    font-size: 0.875rem;
  }

  .faq-cta {
    padding: 36px 24px;
  }
}
