:root {
  --primary-green: #2d5a27;
  --primary-green-light: #3d7a34;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --text-dark: #212529;
  --text-muted: #6c757d;
  --border-color: #e9ecef;
}

* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-white);
}

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-green) !important;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-green) !important;
}

.hero-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-section h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.hero-section .lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.disclaimer-badge {
  display: inline-block;
  background-color: var(--primary-green);
  color: var(--bg-white);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.page-header {
  padding: 3rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  text-align: center;
}

.page-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 0.75rem;
}

.page-header .lead {
  color: var(--text-muted);
  font-size: 1.125rem;
}

.content-section {
  padding: 4rem 0;
}

.content-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1.25rem;
}

.content-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.content-section p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.content-section ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.content-section li {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.bg-light {
  background-color: var(--bg-light) !important;
}

.card {
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  color: var(--primary-green);
  font-weight: 600;
}

.card-text {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.context-section {
  padding: 4rem 0;
  background-color: var(--bg-light);
}

.context-box {
  background-color: var(--bg-white);
  border: 2px solid var(--primary-green);
  border-radius: 0.75rem;
  padding: 2rem;
}

.context-box h2,
.context-box h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.alert-box {
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.alert-box h2 {
  color: #856404;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.alert-box p {
  color: #856404;
  margin-bottom: 0;
}

.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
  color: var(--bg-white);
}

.cta-section h2 {
  color: var(--bg-white);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section .lead {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-green-light);
  border-color: var(--primary-green-light);
}

.cta-section .btn-primary {
  background-color: var(--bg-white);
  color: var(--primary-green);
  border-color: var(--bg-white);
}

.cta-section .btn-primary:hover {
  background-color: #f8f9fa;
  color: var(--primary-green);
}

.thank-you-section {
  padding: 6rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  background-color: var(--bg-light);
  padding: 3rem;
  border-radius: 1rem;
}

.thank-you-content h1 {
  color: var(--primary-green);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-info h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.policy-content h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content h3 {
  margin-top: 1.5rem;
  font-size: 1.125rem;
}

.footer {
  background-color: #1a1a1a;
  color: #e9ecef;
  padding: 3rem 0 1.5rem;
  margin-top: 0;
}

.footer h4 {
  color: var(--bg-white);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer p {
  color: #adb5bd;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer ul {
  padding: 0;
}

.footer li {
  margin-bottom: 0.5rem;
}

.footer a {
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--bg-white);
  text-decoration: none;
}

.footer hr {
  border-color: #343a40;
  margin: 2rem 0 1rem;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  padding: 1rem;
  z-index: 9999;
  display: none;
}

.cookie-consent.show {
  display: block;
}

.cookie-content {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  color: #e9ecef;
  margin: 0;
  font-size: 0.9375rem;
}

.form-control {
  border-radius: 0.5rem;
  border: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(45, 90, 39, 0.15);
}

.form-group label {
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

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

.rounded {
  border-radius: 0.75rem !important;
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 3rem 0;
  }

  .hero-section h1 {
    font-size: 1.75rem;
  }

  .content-section {
    padding: 3rem 0;
  }

  .content-section h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 2rem 0;
    text-align: center;
  }

  .hero-section h1 {
    font-size: 1.5rem;
  }

  .hero-section img {
    margin-top: 2rem;
  }

  .content-section {
    padding: 2rem 0;
  }

  .cta-section {
    padding: 3rem 0;
  }

  .context-box {
    padding: 1.5rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .footer {
    text-align: center;
  }

  .card-img-top {
    height: 180px;
  }
}
