:root {
  --primary-green: #2d7a3e;
  --light-green: #4a9d5f;
  --dark-green: #1e5a2e;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

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

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  color: var(--dark-green);
}

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

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

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--dark-green);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
}

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

.navbar {
  background: transparent !important;
  padding: 0;
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

.hero-section {
  background: linear-gradient(135deg, var(--light-green) 0%, var(--dark-green) 100%);
  color: var(--white);
  padding: 150px 0 100px;
  margin-top: 70px;
  text-align: center;
}

.hero-section h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  margin-top: 2rem;
}

.content-section {
  padding: 80px 0;
}

.content-section:nth-child(even) {
  background: var(--bg-light);
}

.section-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.btn-primary-custom {
  background: var(--primary-green);
  border: none;
  color: var(--white);
  padding: 12px 30px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary-custom:hover {
  background: var(--dark-green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(45,122,62,0.3);
}

.disclaimer-box {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 6px;
}

.disclaimer-box h3 {
  color: #856404;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.disclaimer-box p {
  color: #856404;
  margin-bottom: 0.5rem;
}

.faq-item {
  background: var(--white);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
  color: var(--primary-green);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

footer {
  background: var(--dark-green);
  color: var(--white);
  padding: 50px 0 30px;
}

footer h4 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

footer a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s ease;
  display: block;
  margin-bottom: 0.5rem;
}

footer a:hover {
  opacity: 0.8;
}

footer p {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
}

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

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

.cookie-banner p {
  margin: 0 0 1rem 0;
}

.cookie-banner .btn {
  margin-right: 10px;
}

.email-form {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.email-form h3 {
  margin-bottom: 1rem;
}

.email-form .form-control {
  border: 2px solid #ddd;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.email-form .form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(45,122,62,0.25);
}

.contact-info {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}

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

.contact-info p {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.policy-content {
  background: var(--white);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin: 2rem 0;
}

.policy-content h2 {
  margin-top: 2rem;
}

.policy-content h3 {
  margin-top: 1.5rem;
}

.policy-content ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-section {
    padding: 120px 0 60px;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .content-section {
    padding: 50px 0;
  }
  
  .logo {
    font-size: 1.25rem;
  }
  
  .policy-content {
    padding: 1.5rem;
  }
}
