:root {
  --primary: #2E8B57;
  --accent-gold: #F0E68C;
  --accent-teal: #5F9EA0;
  --accent-silver: #C0C0C0;
  --bg-light: #FAFAFA;
  --text-dark: #1a1a1a;
  --text-light: #555;
  --border-color: #E0E0E0;
}

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

html, body {
  font-family: 'Roboto', 'Merriweather Sans', sans-serif;
  color: var(--text-dark);
  background-color: white;
  line-height: 1.6;
}

body {
  padding-top: 70px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', 'Lato', sans-serif;
  font-weight: 600;
  margin: 0;
  color: var(--text-dark);
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
  color: var(--primary);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
  color: var(--text-dark);
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 1.05rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-teal);
}

header {
  background-color: white;
  border-bottom: 2px solid var(--accent-silver);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar {
  padding: 0.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand img {
  width: 35px;
  height: 35px;
}

.navbar-nav {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

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

.nav-link.active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.25rem;
}

main {
  min-height: calc(100vh - 140px);
}

section {
  padding: 3.5rem 2rem;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('images/hero-forest.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 8rem 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin-top: 70px;
}

.hero h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  color: #f0f0f0;
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.section-intro.reversed {
  grid-template-columns: 1fr 1fr;
}

.section-intro.reversed .content {
  order: 2;
}

.section-intro.reversed img {
  order: 1;
}

.section-intro img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(46, 139, 87, 0.15);
}

.content {
  padding: 1rem 0;
}

.section-intro h2 {
  margin-top: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(46, 139, 87, 0.15);
}

.card h3 {
  margin-top: 0;
  color: var(--primary);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: var(--bg-light);
}

table thead {
  background-color: var(--primary);
  color: white;
}

table th, table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

table th {
  font-weight: 600;
}

table tbody tr:hover {
  background-color: rgba(46, 139, 87, 0.05);
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-item {
  margin-bottom: 2rem;
  padding-left: 2rem;
  border-left: 3px solid var(--primary);
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--primary);
}

.timeline-year {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s, transform 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover {
  background-color: var(--accent-teal);
  transform: scale(1.05);
}

.disclaimer-block {
  background-color: var(--accent-gold);
  opacity: 0.9;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  border-left: 5px solid var(--primary);
  color: var(--text-dark);
}

.disclaimer-block p {
  margin: 0;
  font-weight: 500;
}

footer {
  background-color: var(--text-dark);
  color: white;
  padding: 3rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h4 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section p, .footer-section a {
  color: #ccc;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid var(--accent-silver);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: #ccc;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

input, textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-container {
  max-width: 500px;
  margin: 2rem auto;
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: white;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  z-index: 998;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-message {
  flex: 1;
  font-size: 0.95rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  font-size: 0.9rem;
}

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

.cookie-accept:hover {
  background-color: var(--accent-teal);
}

.cookie-decline {
  background-color: var(--accent-silver);
  color: var(--text-dark);
}

.cookie-decline:hover {
  background-color: #a8a8a8;
}

.cookie-learn {
  background-color: transparent;
  color: var(--accent-gold);
  border: 2px solid var(--accent-gold);
}

.cookie-learn:hover {
  background-color: var(--accent-gold);
  color: var(--text-dark);
}

.thank-you-container {
  text-align: center;
  padding: 4rem 2rem;
  margin: 2rem auto;
  max-width: 600px;
  background-color: var(--bg-light);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(46, 139, 87, 0.15);
}

.thank-you-container h1 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.thank-you-container p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.soft-cta {
  background-color: rgba(46, 139, 87, 0.05);
  padding: 2rem;
  text-align: center;
  border-radius: 8px;
  margin: 3rem 0;
}

.soft-cta p {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .navbar-nav {
    gap: 1rem;
    font-size: 0.9rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero {
    padding: 4rem 1rem;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-intro.reversed {
    grid-template-columns: 1fr;
  }

  .section-intro.reversed .content,
  .section-intro.reversed img {
    order: auto;
  }

  section {
    padding: 2rem 1rem;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .cookie-message {
    text-align: center;
  }

  .cookie-buttons {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    min-width: 100px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 60px;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .navbar {
    padding: 0.5rem 1rem;
  }

  .navbar-nav {
    display: none;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  table {
    font-size: 0.9rem;
  }

  table th, table td {
    padding: 0.75rem 0.5rem;
  }
}
