:root {
  --primary-color: #1a3c34;
  --secondary-color: #f8f5f0;
  --text-color: #2c3e50;
  --light-gray: #f4f4f4;
  --border-color: #e0e0e0;
  --accent-green: #2d5a4d;
  --white: #ffffff;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  font-size: 16px;
  background-color: var(--white);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 1rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

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

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
}

.main-header {
  background-color: var(--white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.navbar-brand:hover {
  color: var(--accent-green);
}

.nav-link {
  color: var(--text-color);
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

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

.nav-link.active {
  color: var(--primary-color);
}

.hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, rgba(26, 60, 52, 0.9) 0%, rgba(45, 90, 77, 0.85) 100%);
  padding: 6rem 0;
  width: 100%;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: 0;
}

.info-banner {
  background-color: var(--secondary-color);
  padding: 1.5rem 0;
  border-bottom: 2px solid var(--primary-color);
}

.info-banner p {
  margin: 0;
  color: var(--primary-color);
  font-size: 1rem;
}

.content-section {
  padding: 4rem 0;
}

.content-section h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.content-section h3 {
  font-size: 1.5rem;
  color: var(--accent-green);
  margin-bottom: 1rem;
  font-weight: 600;
}

.content-section p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.content-section.bg-light {
  background-color: var(--secondary-color);
}

.info-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(26, 60, 52, 0.15);
}

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

.context-card {
  background-color: var(--white);
  padding: 1.5rem;
  border-left: 4px solid var(--primary-color);
  border-radius: 5px;
  height: 100%;
}

.context-card h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
}

.plant-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.plant-item h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.myth-fact {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.myth-fact:last-child {
  border-bottom: none;
}

.myth-fact h3 {
  font-size: 1.3rem;
  color: var(--accent-green);
  margin-bottom: 0.8rem;
}

.disclaimer-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--light-gray) 100%);
}

.disclaimer-box {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 10px;
  border: 2px solid var(--primary-color);
}

.disclaimer-box h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.disclaimer-box ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

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

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-green) 100%);
  padding: 5rem 0;
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

.btn-custom {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background-color: var(--accent-green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-custom-large {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-custom-large:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(248, 245, 240, 0.4);
  text-decoration: none;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-green) 100%);
  padding: 4rem 0;
  color: var(--white);
  margin-bottom: 3rem;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.page-header .lead {
  font-size: 1.3rem;
  color: var(--secondary-color);
}

.contact-box,
.contact-form-box {
  background-color: var(--secondary-color);
  padding: 2.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.contact-info h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: var(--primary-color);
  font-weight: 600;
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 5px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(26, 60, 52, 0.1);
}

.thank-you-section {
  padding: 6rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-box {
  background-color: var(--secondary-color);
  padding: 3rem;
  border-radius: 10px;
}

.thank-you-box h1 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.legal-content h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  color: var(--accent-green);
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.main-footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.main-footer h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.main-footer p {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

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

.main-footer a:hover {
  color: var(--white);
  text-decoration: none;
}

.footer-tagline {
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  border-left: 3px solid var(--secondary-color);
  padding-left: 1rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(248, 245, 240, 0.2);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .content-section h2 {
    font-size: 1.8rem;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 767px) {
  .hero-section {
    min-height: 400px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

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

  .content-section {
    padding: 2.5rem 0;
  }

  .content-section h2 {
    font-size: 1.6rem;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .info-card {
    margin-bottom: 1.5rem;
  }
}
