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

:root {
  --primary-green: #4A7C59;
  --accent-blue: #87CEEB;
  --accent-orange: #FF9500;
  --accent-beige: #F5E6D3;
  --neutral-white: #FFFFFF;
  --neutral-light-gray: #F8F8F8;
  --neutral-medium-gray: #E0E0E0;
  --neutral-dark-gray: #333333;
  --neutral-black: #000000;
}

html, body {
  height: 100%;
  font-family: 'Georgia', serif;
  color: var(--neutral-dark-gray);
  line-height: 1.6;
  background-color: var(--neutral-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Trebuchet MS', sans-serif;
  color: var(--neutral-dark-gray);
  font-weight: 600;
  line-height: 1.4;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  color: var(--primary-green);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

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

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

button, .btn {
  padding: 12px 28px;
  border: none;
  background-color: var(--primary-green);
  color: var(--neutral-white);
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

button:hover, .btn:hover {
  background-color: var(--accent-orange);
  transform: scale(1.02);
}

button:focus, .btn:focus {
  outline: 2px solid var(--accent-blue);
  outline-offset: 2px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--neutral-white);
  border-bottom: 1px solid var(--neutral-medium-gray);
  z-index: 1000;
  padding: 1rem 0;
}

.header-container {
  max-width: 85%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo img {
  height: 40px;
  width: 40px;
  margin-right: 10px;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 1rem;
  color: var(--neutral-dark-gray);
  padding: 8px 12px;
  transition: color 0.3s ease;
}

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

main {
  margin-top: 80px;
  padding: 0;
}

.hero {
  position: relative;
  height: 600px;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--neutral-white);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(74, 124, 89, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  color: var(--neutral-white);
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero p {
  color: var(--neutral-white);
  font-size: 1.3rem;
  line-height: 1.8;
}

section {
  padding: 5rem 0;
}

.container {
  max-width: 85%;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-light {
  background-color: var(--neutral-light-gray);
}

.section-accent {
  background-color: var(--accent-beige);
}

.section-blue-light {
  background-color: #E8F4F8;
}

.row {
  display: flex;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

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

.col-text {
  flex: 1;
}

.col-image {
  flex: 1;
  text-align: center;
}

.col-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.card {
  background-color: var(--neutral-white);
  border: 1px solid var(--neutral-medium-gray);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

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

.card h3 {
  margin-top: 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: var(--neutral-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

th, td {
  padding: 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--neutral-medium-gray);
  font-size: 1rem;
}

tbody tr:hover {
  background-color: var(--accent-beige);
}

ul, ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.8rem;
  line-height: 1.7;
}

.faq-item {
  margin-bottom: 2rem;
  background-color: var(--neutral-white);
  border-left: 4px solid var(--primary-green);
  padding: 1.5rem;
  border-radius: 4px;
}

.faq-question {
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.faq-answer {
  color: var(--neutral-dark-gray);
  line-height: 1.7;
}

.disclaimer-box {
  background-color: var(--accent-beige);
  border-left: 4px solid var(--accent-orange);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-box h3 {
  color: var(--primary-green);
  margin-top: 0;
}

footer {
  background-color: var(--neutral-dark-gray);
  color: var(--neutral-white);
  padding: 3rem 0;
  margin-top: 5rem;
}

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

.footer-section h3 {
  color: var(--accent-orange);
  margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
  color: var(--neutral-light-gray);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: var(--neutral-light-gray);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--neutral-dark-gray);
  color: var(--neutral-white);
  padding: 1.5rem;
  display: none;
  z-index: 999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

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

.cookie-content {
  max-width: 85%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-text a {
  color: var(--accent-orange);
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 10px 20px;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

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

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

.cookie-btn-decline {
  background-color: transparent;
  color: var(--neutral-white);
  border: 1px solid var(--neutral-light-gray);
}

.cookie-btn-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cta-link {
  display: inline-block;
  color: var(--primary-green);
  font-weight: 600;
  transition: color 0.3s ease;
}

.cta-link:hover {
  color: var(--accent-orange);
}

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

  h2 {
    font-size: 1.7rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  header {
    padding: 0.8rem 0;
  }

  .header-container {
    max-width: 95%;
  }

  nav {
    gap: 1rem;
  }

  nav a {
    font-size: 0.9rem;
    padding: 6px 8px;
  }

  .hero {
    height: 400px;
  }

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

  .hero p {
    font-size: 1rem;
  }

  main {
    margin-top: 70px;
  }

  .container {
    max-width: 95%;
  }

  .footer-container {
    max-width: 95%;
    grid-template-columns: 1fr;
  }

  .row {
    flex-direction: column;
    gap: 2rem;
  }

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

  section {
    padding: 3rem 0;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    max-width: 95%;
  }

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

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

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

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1rem;
  }

  nav {
    gap: 0.5rem;
  }

  nav a {
    font-size: 0.8rem;
  }

  .hero {
    height: 300px;
  }

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

  p {
    font-size: 1rem;
  }

  table {
    font-size: 0.9rem;
  }

  th, td {
    padding: 0.8rem;
  }

  .cookie-text {
    font-size: 0.85rem;
  }
}
