:root {
  --primary-green: #2d7a3e;
  --light-green: #e8f5e9;
  --dark-green: #1b5e20;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --background: #ffffff;
  --section-bg: #f8f9fa;
}

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

body {
  font-family: 'Georgia', serif;
  color: var(--text-dark);
  line-height: 1.7;
  background: var(--background);
}

h1, h2, h3, h4, h5, h6 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark-green);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

.logo-link {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-green);
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.logo-link:hover {
  color: var(--dark-green);
  text-decoration: none;
}

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

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

.main-content {
  margin-top: 80px;
}

.hero-section {
  background: linear-gradient(135deg, var(--light-green) 0%, #ffffff 100%);
  padding: 5rem 0;
}

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

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

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

.btn-primary-custom {
  background: var(--primary-green);
  border: none;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.btn-outline-custom {
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
  background: transparent;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background: var(--primary-green);
  color: white;
}

.card-custom {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  height: 100%;
}

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

.card-custom img {
  border-radius: 15px 15px 0 0;
  height: 250px;
  object-fit: cover;
  width: 100%;
}

.card-body-custom {
  padding: 2rem;
}

.disclaimer-box {
  background: var(--light-green);
  border-left: 4px solid var(--primary-green);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

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

.disclaimer-box p:last-child {
  margin-bottom: 0;
}

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

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

.footer-section {
  background: var(--dark-green);
  color: white;
  padding: 3rem 0 1.5rem;
}

.footer-section h4 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-section a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
}

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

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

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

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

.form-control-custom {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

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

.icon-box {
  width: 70px;
  height: 70px;
  background: var(--light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: var(--primary-green);
}

.info-notice {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1rem;
  border-radius: 5px;
  margin: 1rem 0;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .section-padding {
    padding: 2.5rem 0;
  }
  
  .card-custom img {
    height: 200px;
  }
}
