* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f7f4ec;
  color: #1f2933;
  line-height: 1.65;
}

.page {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 20px 72px;
}

.hero {
  padding: 56px 20px 24px;
  background: linear-gradient(135deg, #d7f0cf 0%, #f8e5ba 100%);
  border-bottom: 1px solid rgba(31, 41, 51, 0.08);
}

.hero h1,
.page h1 {
  margin: 0 0 12px;
  font-size: 2.2rem;
  line-height: 1.1;
}

.hero p,
.page .meta {
  color: #52606d;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #126b5c;
}

.page-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.page-header h1 {
  margin: 0;
}

.brand-link {
  display: inline-block;
  flex: none;
  line-height: 0;
  border-radius: 22%;
  transition: transform 180ms ease;
}

.brand-link:hover {
  transform: translateY(-1px);
}

.brand-link img {
  display: block;
  border-radius: 22%;
}

.card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 41, 51, 0.08);
  border-radius: 20px;
  padding: 24px;
  margin-top: 24px;
  box-shadow: 0 12px 30px rgba(31, 41, 51, 0.06);
}

.card h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.card p,
.card li {
  color: #334155;
}

.card ul {
  margin: 0;
  padding-left: 20px;
}

.card ol {
  margin: 0;
  padding-left: 22px;
}

a {
  color: #126b5c;
}

strong {
  color: #111827;
}

.intro-grid {
  display: grid;
  gap: 14px;
}

.intro-card p {
  max-inline-size: 62ch;
}

.intro-actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(18, 107, 92, 0.18);
  background: rgba(18, 107, 92, 0.08);
  color: #0f5b4e;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(31, 41, 51, 0.06);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button-link:hover {
  background: rgba(18, 107, 92, 0.12);
  border-color: rgba(18, 107, 92, 0.26);
  transform: translateY(-1px);
}

.button-link:active {
  transform: translateY(0);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(18, 107, 92, 0.08);
  color: #0f5b4e;
  font-size: 0.95rem;
  font-weight: 600;
}

.locale-switcher {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.locale-switcher__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(18, 107, 92, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: #0f5b4e;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.locale-switcher__link:hover {
  transform: translateY(-1px);
  border-color: rgba(18, 107, 92, 0.28);
  background: rgba(18, 107, 92, 0.08);
}

.locale-switcher__link.is-active {
  background: rgba(18, 107, 92, 0.12);
  border-color: rgba(18, 107, 92, 0.32);
}

.faq-section + .faq-section {
  margin-top: 24px;
}

.faq-section h2 {
  margin-bottom: 8px;
}

.faq-section > p {
  margin-top: 0;
  color: #52606d;
}

.faq-item {
  border: 1px solid rgba(31, 41, 51, 0.08);
  border-radius: 16px;
  background: rgba(18, 107, 92, 0.055);
  margin-top: 14px;
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  padding: 18px 20px;
  font-weight: 700;
  color: #102a43;
  font: inherit;
  text-align: left;
  transition: background 180ms ease, color 180ms ease;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.faq-trigger__label {
  flex: 1;
  min-width: 0;
}

.faq-chevron {
  flex: none;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  margin-right: 4px;
  border-right: 2px solid #0f5b4e;
  border-bottom: 2px solid #0f5b4e;
  transform: rotate(45deg);
  transition: transform 220ms ease;
}

.faq-item.is-open .faq-trigger {
  background: rgba(18, 107, 92, 0.06);
}

.faq-item.is-open {
  border-color: rgba(18, 107, 92, 0.18);
  background: rgba(255, 255, 255, 0.78);
}

.faq-item.is-open .faq-chevron {
  transform: rotate(-135deg);
}

.faq-trigger:active {
  background: transparent;
}

.faq-trigger:focus-visible {
  outline: 2px solid rgba(18, 107, 92, 0.28);
  outline-offset: -2px;
}

@media (hover: hover) and (pointer: fine) {
  .faq-item:hover {
    border-color: rgba(18, 107, 92, 0.18);
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.08);
  }
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 220ms ease, opacity 220ms ease;
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer {
  overflow: hidden;
  padding: 0 20px 0;
}

.faq-item.is-open .faq-answer {
  padding-bottom: 18px;
}

.faq-answer p:first-child {
  margin-top: 0;
}

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

.faq-answer ul,
.faq-answer ol {
  margin-top: 10px;
}

.note {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(248, 229, 186, 0.42);
  border: 1px solid rgba(198, 149, 53, 0.18);
  color: #5b3f14;
}

.small {
  color: #617282;
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .page {
    padding: 28px 16px 56px;
  }

  .hero {
    padding: 40px 16px 20px;
  }

  .hero h1,
  .page h1 {
    font-size: 1.9rem;
    line-height: 1.15;
  }

  .card {
    padding: 20px 16px;
    margin-top: 18px;
    border-radius: 18px;
  }

  .card ol,
  .card ul {
    padding-left: 20px;
  }

  .faq-item summary {
    padding: 16px 16px;
    line-height: 1.45;
  }

  .faq-trigger {
    padding: 16px 16px;
    gap: 20px;
  }

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

  .button-link {
    inline-size: 100%;
  }

  .note {
    padding: 11px 12px;
    border-radius: 12px;
  }
}

@media (max-width: 420px) {
  .page {
    padding: 24px 14px 48px;
  }

  .hero {
    padding: 32px 14px 18px;
  }

  .hero h1,
  .page h1 {
    font-size: 1.7rem;
  }

  .eyebrow {
    font-size: 0.8rem;
  }

  .card {
    padding: 18px 14px;
    border-radius: 16px;
  }

  .faq-item {
    border-radius: 14px;
  }

  .faq-item summary {
    padding: 14px 14px;
    font-size: 0.98rem;
  }

  .faq-trigger {
    padding: 14px 14px;
    gap: 18px;
  }

  .faq-answer {
    padding: 0 14px 14px;
  }

  .card ol,
  .card ul {
    padding-left: 18px;
  }
}
