:root {
  --bg: #f8f5ef;
  --text: #1f2933;
  --muted: #667085;
  --primary: #0f5c4d;
  --primary-dark: #083d34;
  --red: #b42318;
  --card: #ffffff;
  --border: #e7ded2;
  --soft: #fffaf2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

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

.hero {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(15, 92, 77, 0.14), transparent 28%),
    linear-gradient(135deg, #f8f5ef 0%, #eef7f4 100%);
  padding: 24px;
}

.navbar {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--primary);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.logo-text {
  font-weight: 800;
  color: var(--primary-dark);
}

.logo-subtext {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.92rem;
  color: var(--text);
}

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

.hero-content {
  max-width: 980px;
  margin: 105px auto 0;
}

.flags {
  display: flex;
  gap: 12px;
  font-size: 2rem;
}

.eyebrow,
.section-label {
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.78rem;
}

h1 {
  font-size: clamp(2.45rem, 6vw, 5.2rem);
  line-height: 1.02;
  margin: 16px 0;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  line-height: 1.13;
  margin: 10px 0 18px;
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 8px;
}

.hero-text {
  max-width: 760px;
  font-size: 1.18rem;
  color: var(--muted);
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0;
}

.button,
.secondary-button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
}

.button {
  background: var(--primary);
  color: white;
}

.button:hover {
  background: var(--primary-dark);
}

.secondary-button {
  border: 1px solid var(--border);
  background: white;
}

.notice {
  max-width: 800px;
  margin-top: 24px;
  padding: 18px;
  border-left: 4px solid var(--red);
  background: rgba(255, 255, 255, 0.75);
  color: var(--muted);
  border-radius: 0 16px 16px 0;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 24px;
}

.section p {
  color: var(--muted);
  max-width: 850px;
}

.alt {
  max-width: none;
  background: #ffffff;
  padding-left: max(24px, calc((100% - 1180px) / 2));
  padding-right: max(24px, calc((100% - 1180px) / 2));
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.card,
.warning-box,
.contact-box,
.disclaimer,
details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
}

.card p,
.warning-box,
details p {
  color: var(--muted);
}

.two-column {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 28px;
  align-items: start;
}

.check-list,
.warning-box ul {
  padding-left: 20px;
  color: var(--muted);
}

.check-list li,
.warning-box li {
  margin-bottom: 10px;
}

.warning-box {
  background: var(--soft);
}

.faq details {
  margin-bottom: 12px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

summary::marker {
  color: var(--primary);
}

.disclaimer {
  max-width: 1080px;
  background: #fff8e8;
}

.contact {
  text-align: center;
}

.contact p {
  margin-left: auto;
  margin-right: auto;
}

.contact-box {
  max-width: 620px;
  margin: 28px auto 0;
  text-align: left;
}

.small-note {
  font-size: 0.92rem;
}

footer {
  text-align: center;
  padding: 28px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

@media (max-width: 900px) {
  .navbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero-content {
    margin-top: 70px;
  }

  .cards,
  .two-column {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 20px;
  }
}
.site-logo {
    height: 120px;
    width: auto;
    display: block;
    border-radius: 12px;
}
