@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Merriweather:wght@400;700&display=swap');

:root {
  --primary-green: #3D9970;
  --accent-beige: #F5DEB3;
  --accent-blue: #007BFF;
  --accent-gray: #E0E0E0;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-white: #FFFFFF;
  --border-light: #F0F0F0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Merriweather', serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  color: var(--primary-green);
}

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

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

p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

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

a:hover {
  color: var(--primary-green);
  text-decoration: underline;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--accent-gray);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

header .brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

header .brand img {
  width: 40px;
  height: 40px;
}

header nav a {
  margin: 0 1.5rem;
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: color 0.3s ease;
}

header nav a:hover {
  color: var(--primary-green);
  text-decoration: none;
}

footer {
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 3rem 2rem 1rem;
  margin-top: 3rem;
  font-size: 0.95rem;
}

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

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

footer .footer-section h4 {
  font-family: 'Montserrat', sans-serif;
  color: var(--accent-beige);
  margin-bottom: 1rem;
}

footer .footer-section ul {
  list-style: none;
}

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

footer .footer-section a {
  color: var(--accent-gray);
  transition: color 0.3s ease;
}

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

footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--accent-gray);
  font-size: 0.85rem;
}

.section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section:nth-child(odd) {
  background-color: var(--bg-white);
}

.section:nth-child(even) {
  background-color: #FAFAF9;
}

.hero {
  background: linear-gradient(135deg, var(--primary-green) 0%, rgba(61, 153, 112, 0.8) 100%);
  color: var(--bg-white);
  padding: 6rem 2rem;
  text-align: center;
}

.hero h1 {
  color: var(--bg-white);
  font-size: 3.5rem;
  margin-bottom: 2rem;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.hero img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 8px;
  margin-top: 2rem;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-column img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

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

.card {
  background: var(--bg-white);
  border: 1px solid var(--accent-gray);
  border-radius: 8px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(61, 153, 112, 0.15);
}

.card h3 {
  color: var(--primary-green);
}

.card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}

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

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

table th {
  padding: 1rem;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

table td {
  padding: 1rem;
  border-bottom: 1px solid var(--accent-gray);
}

table tbody tr:hover {
  background-color: rgba(61, 153, 112, 0.05);
}

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

.faq-item h4 {
  font-family: 'Montserrat', sans-serif;
  color: var(--primary-green);
  margin-bottom: 1rem;
  cursor: pointer;
}

.faq-item p {
  color: var(--text-light);
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--primary-green);
  color: var(--bg-white);
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}

.btn:hover {
  background-color: #2d7a57;
  transform: scale(1.05);
}

.btn-secondary {
  background-color: var(--accent-blue);
}

.btn-secondary:hover {
  background-color: #0056b3;
}

.highlight {
  background-color: var(--accent-beige);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.highlight h3 {
  color: var(--primary-green);
}

ul, ol {
  margin: 1rem 0 1rem 2rem;
  color: var(--text-light);
}

li {
  margin-bottom: 0.8rem;
}

.disclaimer {
  background-color: #FFF3CD;
  border: 1px solid #FFC107;
  border-radius: 4px;
  padding: 1.5rem;
  margin: 2rem 0;
  font-size: 0.95rem;
  color: #856404;
}

.disclaimer h4 {
  color: #856404;
  margin-bottom: 1rem;
}

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

.cookie-banner.show {
  display: block;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.cookie-text p {
  margin: 0;
  font-size: 0.95rem;
}

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

.cookie-btn {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

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

.cookie-decline {
  background-color: transparent;
  color: var(--bg-white);
  border: 1px solid var(--bg-white);
}

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

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

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

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

  h2 {
    font-size: 1.5rem;
  }

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

  .two-column {
    grid-template-columns: 1fr;
  }

  header .navbar {
    flex-wrap: wrap;
    padding: 1rem;
  }

  header nav {
    width: 100%;
  }

  header nav a {
    display: inline-block;
    margin: 0.5rem;
  }

  .cookie-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cookie-buttons {
    flex-wrap: wrap;
  }

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

  .section {
    padding: 2rem 1rem;
  }

  table {
    font-size: 0.9rem;
  }

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