:root {
  --brand-primary: #0f7b3e;
  --brand-secondary: #167a4d;
  --brand-header-bg: #0b1f17;
  --brand-hero-from: #0d2b1f;
  --brand-hero-to: #155e3a;
  --body-bg: #f8f9fa;
  --text-color: #2c3e50;
  --text-light: #ffffff;
  --border-color: #d1d5db;
  --card-bg: #ffffff;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --font-heading: 'Poppins', 'Montserrat', system-ui, sans-serif;
  --font-body: 'Open Sans', 'Lato', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  background-color: var(--body-bg);
  color: var(--text-color);
  min-height: 100vh;
}

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

a {
  color: var(--brand-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brand-primary);
  color: #fff;
  padding: 10px 16px;
  z-index: 10000;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

.site-header {
  background: var(--brand-header-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 20px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo-img {
  height: 44px;
  width: auto;
  display: block;
  max-width: 200px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 28px;
}

.main-nav a {
  color: var(--text-light);
  font-weight: 600;
  font-size: 16px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

.main-nav a:hover {
  border-color: var(--brand-primary);
  text-decoration: none;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 28px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

.hero {
  background: linear-gradient(135deg, var(--brand-hero-from), var(--brand-hero-to));
  color: var(--text-light);
  padding: 80px 0 100px;
  text-align: center;
  border-bottom: 4px solid var(--brand-primary);
}

.hero-inner {
  max-width: 900px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 36px;
  opacity: 0.92;
}

.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  padding: 14px 34px;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
}

.btn-hero {
  background: #f0c040;
  color: #1a2e1f;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-hero:hover {
  background: #ffd75e;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  text-decoration: none;
}

.btn-cta {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(15, 123, 62, 0.3);
}

.btn-cta:hover {
  background: #0a6630;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 123, 62, 0.4);
  text-decoration: none;
}

.content-section {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px;
  margin: 40px 0;
  box-shadow: var(--shadow);
}

.content-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

.content-section h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin: 28px 0 12px;
  line-height: 1.3;
}

.content-section p {
  margin-bottom: 16px;
}

.content-section ul,
.content-section ol {
  margin: 16px 0 16px 24px;
}

.content-section li {
  margin-bottom: 8px;
}

.highlight-box {
  background: #f0f7f2;
  border-left: 4px solid var(--brand-primary);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
}

.highlight-box p {
  margin-bottom: 0;
}

.site-footer {
  background: var(--brand-header-bg);
  color: #cfd8d4;
  padding: 50px 0 30px;
  margin-top: 60px;
  border-top: 4px solid var(--brand-primary);
}

.footer-security {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.security-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.security-badge::before {
  content: "🔒";
  font-size: 16px;
}

.security-badge:last-child::before {
  content: "✓";
  font-size: 18px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-nav a {
  color: #cfd8d4;
  font-size: 15px;
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.footer-nav a:hover {
  color: #fff;
  border-bottom-color: var(--brand-primary);
}

.footer-copy {
  text-align: center;
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.8;
}

.footer-disclaimer {
  text-align: center;
  font-size: 13px;
  opacity: 0.7;
  max-width: 700px;
  margin: 0 auto;
}

.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: var(--brand-primary);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}

.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,.45);
  text-decoration: none;
}

.legal-page {
  padding: 40px 0;
}

.legal-page .content-section h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--text-color);
}

@media (max-width: 992px) {
  .main-nav ul {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-nav-active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--brand-header-bg);
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 17px;
  }

  .hero {
    padding: 60px 0 80px;
  }

  .hero p {
    font-size: 18px;
  }

  .content-section {
    padding: 28px 20px;
    margin: 24px 0;
  }

  .header-inner {
    min-height: 60px;
  }

  .site-logo-img {
    height: 36px;
  }
}

@media (max-width: 480px) {
  .floating-cta {
    bottom: 20px;
    right: 20px;
    padding: 12px 22px;
    font-size: 15px;
  }

  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}