:root {
  --primary-green: #1F3B2E;
  --cream-beige: #F4F0E6;
  --soft-mint: #A2C5B9;
  --burnt-orange: #B84A2E;
  --dark-grey: #2A2A2A;
  --light-grey: #F8F7F4;
}

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

html, body {
  font-family: 'Open Sans', 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark-grey);
  background-color: var(--cream-beige);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Merriweather', serif;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1.3;
}

h1 {
  font-size: 60px;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 48px;
  margin-bottom: 25px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 28px;
  margin-bottom: 18px;
}

h4 {
  font-size: 22px;
  margin-bottom: 15px;
}

p {
  margin-bottom: 15px;
  max-width: 100%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-green);
  z-index: 1000;
  padding: 15px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: rgba(31, 59, 46, 0.95);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  padding: 10px 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.navbar-brand {
  font-size: 24px;
  font-weight: 700;
  color: var(--cream-beige);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.navbar-brand img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.navbar-nav {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--cream-beige);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--soft-mint);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--soft-mint);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

footer {
  background-color: var(--primary-green);
  color: var(--cream-beige);
  padding: 60px 40px 30px;
  margin-top: 100px;
  font-size: 14px;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: var(--cream-beige);
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-section a {
  color: var(--soft-mint);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--burnt-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(242, 240, 230, 0.2);
  padding-top: 25px;
  text-align: center;
}

.footer-disclaimer {
  color: var(--cream-beige);
  margin-bottom: 15px;
  font-weight: 600;
}

main {
  margin-top: 80px;
  min-height: calc(100vh - 150px);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

.section {
  padding: 150px 40px;
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.section.full-width {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section-content {
  flex: 1;
  animation: fadeInUp 0.8s ease-out;
}

.section-image {
  flex: 0.9;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.section-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.section-image:hover img {
  transform: scale(1.02);
}

.hero {
  position: relative;
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-green) 0%, rgba(31, 59, 46, 0.8) 100%);
  color: var(--cream-beige);
  text-align: center;
  margin-top: 0;
  padding: 100px 40px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/hero-forest.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  animation: fadeInDown 0.8s ease-out;
}

.hero h1 {
  color: var(--cream-beige);
  font-size: 70px;
  margin-bottom: 20px;
}

.hero p {
  color: var(--cream-beige);
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.hero-disclaimer {
  font-size: 14px;
  color: var(--soft-mint);
  margin-top: 20px;
  font-style: italic;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--burnt-orange);
  color: var(--cream-beige);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--burnt-orange);
  font-size: 16px;
  cursor: pointer;
  outline: none;
  text-align: center;
}

.btn:hover {
  background-color: transparent;
  color: var(--burnt-orange);
  transform: scale(1.04);
}

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

.btn-light:hover {
  background-color: transparent;
  color: var(--soft-mint);
}

.btn-outline {
  background-color: transparent;
  color: var(--burnt-orange);
  border-color: var(--burnt-orange);
}

.btn-outline:hover {
  background-color: var(--burnt-orange);
  color: var(--cream-beige);
}

.card {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 4px solid var(--burnt-orange);
  margin-bottom: 20px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  border-left-color: var(--soft-mint);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 15px;
}

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

.section-alt {
  background-color: var(--light-grey);
}

.table-wrapper {
  overflow-x: auto;
  margin: 30px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

table thead {
  background-color: var(--primary-green);
  color: var(--cream-beige);
}

table th {
  padding: 15px;
  text-align: left;
  font-weight: 700;
  font-size: 16px;
}

table td {
  padding: 12px 15px;
  border-bottom: 1px solid #e0e0e0;
}

table tbody tr:hover {
  background-color: var(--light-grey);
}

table tbody tr:nth-child(even) {
  background-color: #fafaf9;
}

.highlight {
  color: var(--burnt-orange);
  font-weight: 600;
}

.list-styled {
  list-style: none;
  margin: 20px 0;
}

.list-styled li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  margin-bottom: 10px;
}

.list-styled li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--soft-mint);
  font-weight: bold;
  font-size: 18px;
}

.contact-form {
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 40px auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary-green);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--light-grey);
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--soft-mint);
  box-shadow: 0 0 0 3px rgba(162, 197, 185, 0.1);
}

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

.form-disclaimer {
  background-color: var(--light-grey);
  padding: 15px;
  border-radius: 4px;
  font-size: 14px;
  color: var(--dark-grey);
  margin-bottom: 20px;
  border-left: 4px solid var(--burnt-orange);
}

.thank-you {
  text-align: center;
  padding: 100px 40px;
}

.thank-you h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.thank-you p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #666;
}

.faq-item {
  background-color: white;
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-left: 4px solid var(--burnt-orange);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-green);
  font-size: 18px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burnt-orange);
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  color: var(--dark-grey);
  line-height: 1.6;
  display: none;
  animation: slideDown 0.3s ease-out;
}

.faq-item.open .faq-answer {
  display: block;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-green);
  color: var(--cream-beige);
  padding: 20px 40px;
  z-index: 999;
  display: none;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

.cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  animation: slideUp 0.4s ease-out;
}

.cookie-content {
  flex: 1;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept {
  background-color: var(--burnt-orange);
  color: var(--cream-beige);
}

.cookie-accept:hover {
  background-color: #a0402a;
}

.cookie-reject {
  background-color: transparent;
  color: var(--cream-beige);
  border: 2px solid var(--cream-beige);
}

.cookie-reject:hover {
  background-color: var(--cream-beige);
  color: var(--primary-green);
}

.cookie-learn {
  background-color: var(--soft-mint);
  color: var(--primary-green);
}

.cookie-learn:hover {
  background-color: #8aada0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 22px;
  }

  .navbar {
    padding: 0 20px;
  }

  .navbar-nav {
    gap: 15px;
    font-size: 14px;
  }

  .section {
    flex-direction: column;
    padding: 80px 20px;
    gap: 30px;
  }

  .section.reverse {
    flex-direction: column;
  }

  .section-image {
    flex: 1;
    width: 100%;
  }

  .hero {
    height: auto;
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 40px;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .cookie-banner.show {
    flex-direction: column;
    gap: 15px;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: space-between;
  }

  .contact-form {
    padding: 20px;
  }

  main {
    margin-top: 70px;
  }

  body {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .navbar-nav {
    display: none;
  }

  .section {
    padding: 50px 15px;
  }

  .footer {
    padding: 40px 20px 20px;
  }

  .cookie-banner.show {
    padding: 15px;
  }

  .cookie-content p {
    font-size: 12px;
  }

  .cookie-btn {
    padding: 8px 12px;
    font-size: 12px;
  }
}
