@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Plus+Jakarta+Sans:wght@400;500;700;800&display=swap');

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #fff;
  color: #334;
  line-height: 1.6;
  min-height: 100vh;
}

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

a { color: #1B6EC2; text-decoration: none; }
a:hover { color: #F5A623; }

/* ── HEADER ── */
.header {
  background: #fff;
  padding: 24px 24px 18px;
  text-align: center;
}

.header-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.header-logo {
  width: 100%;
  max-width: 380px;
  height: auto;
}

.header-lines { text-align: center; }

.header-tagline {
  color: #1B6EC2;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 2px;
}

.header-sub {
  color: #F5A623;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.header-year {
  color: #556;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #1B6EC2;
  border-bottom: 4px solid #F5A623;
}

.hero-banner {
  width: 100%;
  max-width: 1100px;
  height: auto;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(27,110,194,0.78) 0%, rgba(27,110,194,0.35) 60%, rgba(245,166,35,0.20) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 30px 6vw;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  pointer-events: none;
  z-index: 3;
}

.hero-label {
  color: #F5A623;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 8px;
  background: rgba(255,255,255,0.95);
  padding: 5px 12px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
  margin-bottom: 0;
}

/* ── LOGO STRIP ── */
.logo-strip {
  background: #fff;
  padding: 18px 20px;
  text-align: center;
}

.logo-strip-img {
  max-width: 260px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ── FAQ ── */
.faq-section {
  padding: 56px 20px 72px;
  background: linear-gradient(180deg, #fff 0%, #f6faff 100%);
}

.container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-intro {
  text-align: center;
  font-size: 1.05rem;
  color: #445;
  margin-bottom: 36px;
  line-height: 1.7;
}

.faq-intro strong { color: #1B6EC2; }

.accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border: 1px solid #d8e7f7;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(27,110,194,0.08);
  transition: box-shadow 0.2s ease;
}

.faq-item:hover { box-shadow: 0 6px 24px rgba(27,110,194,0.14); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 18px 22px;
  background: linear-gradient(90deg, #1B6EC2 0%, #155a9e 100%);
  color: #fff;
  border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: linear-gradient(90deg, #155a9e 0%, #1B6EC2 100%);
}

.faq-question:focus-visible {
  outline: 3px solid #F5A623;
  outline-offset: 2px;
}

.faq-question[aria-expanded="true"] { background: linear-gradient(90deg, #F5A623 0%, #d98d18 100%); }

.faq-question[aria-expanded="true"]:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform 0.25s ease, background 0.2s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: rgba(255,255,255,0.35);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
}

.faq-answer.open {
  max-height: 1200px;
  padding: 20px 22px;
}

.faq-answer p,
.faq-answer li {
  font-size: 0.95rem;
  color: #445;
  line-height: 1.7;
  margin-bottom: 12px;
}

.faq-answer p:last-child,
.faq-answer li:last-child { margin-bottom: 0; }

.faq-answer ul,
.faq-answer ol {
  padding-left: 22px;
  margin-bottom: 12px;
}

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

/* ── CTA ── */
.cta-box {
  margin-top: 48px;
  text-align: center;
  background: linear-gradient(135deg, #1B6EC2 0%, #155a9e 100%);
  border-radius: 16px;
  padding: 40px 28px;
  color: #fff;
  box-shadow: 0 8px 30px rgba(27,110,194,0.25);
}

.cta-text {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 22px;
  line-height: 1.5;
}

.cta-button {
  display: inline-block;
  background: #F5A623;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px 32px;
  border-radius: 50px;
  box-shadow: 0 5px 18px rgba(245,166,35,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta-button:hover {
  background: #e09512;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.45);
}

/* ── FOOTER ── */
.footer {
  background: #1B6EC2;
  color: #fff;
  padding: 44px 24px 32px;
  text-align: center;
  border-top: 4px solid #F5A623;
}

.footer-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  max-width: 280px;
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-weight: 700;
  font-size: 1.05rem;
  color: #F5A623;
}

.footer-verse {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
}

.footer-verse span {
  font-style: normal;
  font-weight: 700;
  color: #F5A623;
  margin-left: 6px;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.72);
  margin-top: 14px;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .header { padding: 14px 16px; }
  .header-logo { max-width: 260px; }
  .header-tagline { font-size: 0.95rem; }
  .header-sub { font-size: 0.85rem; }
  .header-year { font-size: 0.75rem; }

  .hero-content {
    align-items: center;
    text-align: center;
    padding: 22px 16px;
  }

  .hero h1 { font-size: clamp(1.6rem, 8vw, 2.2rem); }
  .hero-verse { font-size: 0.9rem; }
  .hero-banner { max-height: 220px; object-position: 60% top; }

  .faq-section { padding: 36px 14px 52px; }
  .faq-question { padding: 15px 16px; font-size: 0.92rem; }
  .faq-answer.open { padding: 16px; }
  .faq-answer p, .faq-answer li { font-size: 0.9rem; }

  .cta-box { padding: 30px 20px; }
  .cta-text { font-size: 1rem; }
  .cta-button { padding: 14px 24px; font-size: 0.9rem; }

  .footer { padding: 34px 18px 26px; }
  .footer-logo { max-width: 220px; }
  .footer-verse { font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .faq-answer, .faq-icon, .cta-button, .faq-item {
    transition: none;
  }
}
