:root {
  --primary: #2E8B57;
  --accent-gold: #FFD700;
  --accent-steel: #4682B4;
  --accent-gray: #A9A9A9;
  --dark-gray: #333333;
  --light-gray: #F5F5F5;
  --white: #FFFFFF;
}

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

html, body {
  font-family: 'Lato', 'Raleway', sans-serif;
  color: var(--dark-gray);
  background-color: var(--white);
  line-height: 1.6;
}

body {
  padding-top: 80px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 15px 0;
}

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

.logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px;
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}

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

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

main {
  flex: 1;
}

section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero {
  background: linear-gradient(rgba(46, 139, 87, 0.7), rgba(46, 139, 87, 0.7)), url('images/hero-nature.jpg') center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 140px 20px;
  margin-top: -80px;
  padding-top: 220px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero .tagline {
  font-size: 20px;
  margin-bottom: 30px;
  font-style: italic;
}

.disclaimer-intro {
  font-size: 14px;
  color: var(--accent-gold);
  font-weight: bold;
  margin-top: 20px;
}

section h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 40px;
  text-align: center;
}

section h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.two-column.reverse {
  direction: rtl;
}

.two-column.reverse > * {
  direction: ltr;
}

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

.two-column-text h3 {
  margin-bottom: 20px;
}

.two-column-text p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--dark-gray);
}

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

.card {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary);
}

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

.card h3 {
  margin-bottom: 15px;
  color: var(--accent-steel);
}

.card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark-gray);
}

.botanical-section {
  background-color: var(--light-gray);
  padding: 80px 20px;
}

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

.botanical-item {
  text-align: center;
  padding: 20px;
}

.botanical-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.botanical-item h3 {
  margin-bottom: 10px;
  color: var(--accent-steel);
}

.botanical-item p {
  font-size: 14px;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

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

.cta-button-alt {
  background-color: var(--accent-gold);
  color: var(--dark-gray);
}

.cta-button-alt:hover {
  background-color: #FFC700;
}

.section-intro {
  font-size: 16px;
  color: var(--dark-gray);
  margin-bottom: 40px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.disclaimer-box {
  background-color: #F0F8F0;
  border-left: 4px solid var(--primary);
  padding: 25px;
  margin: 40px 0;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1.8;
}

.disclaimer-box strong {
  color: var(--primary);
}

footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 50px 20px;
  margin-top: 80px;
}

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

.footer-section h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--accent-gold);
}

.footer-section p, .footer-section li {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

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

.footer-section a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  z-index: 999;
  max-height: 150px;
  overflow-y: auto;
}

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

.cookie-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

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

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

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

.cookie-btn-reject {
  background-color: var(--accent-gray);
  color: var(--white);
}

.cookie-btn-reject:hover {
  background-color: #888;
}

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

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

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--accent-gray);
  border-radius: 5px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

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

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

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-disclaimer {
  background-color: #E8F5E9;
  border: 1px solid var(--primary);
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark-gray);
}

.success-message {
  text-align: center;
  padding: 60px 20px;
}

.success-message h1 {
  color: var(--primary);
  margin-bottom: 20px;
}

.success-message p {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.8;
}

.thank-you-box {
  background-color: var(--light-gray);
  padding: 40px;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

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

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

  section h2 {
    font-size: 28px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

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

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

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

@media (max-width: 480px) {
  section {
    padding: 50px 15px;
  }

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

  section h2 {
    font-size: 22px;
  }

  section h3 {
    font-size: 18px;
  }

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