:root {
  --color-primary: #228B22;
  --color-accent-gold: #D4AF37;
  --color-accent-coral: #E2725B;
  --color-accent-cream: #F5F5DC;
  --color-dark: #1a1a1a;
  --color-light: #ffffff;
  --color-gray: #f8f8f8;
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--color-dark);
  margin-bottom: 2rem;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

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

p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
  letter-spacing: 0.3px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-light);
  border-bottom: 1px solid #eee;
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

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

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

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

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

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

main {
  margin-top: 80px;
}

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

.section {
  padding: 6rem 2rem;
}

.section-hero {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.section-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(34, 139, 34, 0.4);
  z-index: 1;
}

.section-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-light);
  max-width: 800px;
}

.section-hero-content h1 {
  color: var(--color-light);
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-hero-content p {
  color: var(--color-light);
  font-size: 1.25rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

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

.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.section-content.reverse > *:first-child {
  order: 2;
}

.section-content.reverse > *:last-child {
  order: 1;
}

.section-text {
  max-width: 600px;
}

.section-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.section-image img {
  width: 100%;
  height: auto;
  display: block;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.card {
  background: var(--color-light);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.card:hover {
  box-shadow: 0 8px 30px rgba(34, 139, 34, 0.12);
  transform: translateY(-4px);
  border-color: var(--color-primary);
}

.card h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--color-primary);
  color: var(--color-light);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--color-primary);
  font-family: var(--font-body);
  cursor: pointer;
}

.btn:hover {
  background: transparent;
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 139, 34, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
}

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

.section-center {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-center h2 {
  margin-bottom: 2rem;
}

.disclaimer {
  background: var(--color-accent-cream);
  padding: 2rem;
  border-left: 4px solid var(--color-primary);
  border-radius: 6px;
  margin-top: 3rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

footer {
  background: var(--color-dark);
  color: var(--color-light);
  padding: 4rem 2rem;
  margin-top: 6rem;
}

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

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

.footer-section p, .footer-section a {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

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

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-dark);
  color: var(--color-light);
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  z-index: 999;
  border-top: 3px solid var(--color-primary);
  display: none;
}

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

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

.cookie-text {
  flex: 1;
}

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

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

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

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

.cookie-accept:hover {
  background: #1a6b1a;
}

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

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

.cookie-learn {
  background: transparent;
  color: var(--color-accent-gold);
  text-decoration: underline;
  padding: 0;
}

.cookie-learn:hover {
  color: #d4af37;
}

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

  h2 {
    font-size: 1.8rem;
  }

  .navbar-nav {
    gap: 1rem;
  }

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

  .section-content.reverse > *:first-child {
    order: initial;
  }

  .section-content.reverse > *:last-child {
    order: initial;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .cookie-content {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    gap: 0.5rem;
  }

  .cookie-btn {
    flex: 1;
  }
}

@media (max-width: 576px) {
  .navbar {
    padding: 0 1rem;
  }

  .navbar-nav {
    gap: 0.5rem;
    font-size: 0.9rem;
  }

  .section {
    padding: 3rem 1rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

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

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

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