:root {
  --primary-color: #2E7D32;
  --primary-dark: #1B5E20;
  --primary-light: #4CAF50;
  --accent-beige: #F5F1E8;
  --text-dark: #333333;
  --text-light: #666666;
  --white: #FFFFFF;
  --gray-light: #F8F8F8;
  --border-color: #E0E0E0;
}

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

body {
  font-family: 'Lato', 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-dark);
  background-color: var(--white);
}

.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

h1 {
  font-size: 46px;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-weight: 700;
}

h2 {
  font-size: 35px;
  line-height: 1.4;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

h3 {
  font-size: 24px;
  line-height: 1.5;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
}

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

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s;
}

.logo:hover {
  color: var(--primary-dark);
}

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

.nav-menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
  font-weight: 500;
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--primary-color);
  cursor: pointer;
}

.hero {
  background: linear-gradient(135deg, var(--accent-beige) 0%, var(--white) 100%);
  padding: 140px 0 80px;
  text-align: center;
}

.hero h1 {
  color: var(--primary-color);
  margin-bottom: 24px;
}

.hero p {
  font-size: 20px;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 32px;
}

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

.section {
  padding: 80px 0;
}

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

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

.section-text h2 {
  margin-bottom: 24px;
}

.section-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.single-column {
  max-width: 900px;
  margin: 0 auto;
}

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

.cta-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
  color: var(--white);
  text-decoration: none;
}

.cta-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.cta-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.disclaimer-box {
  background-color: var(--accent-beige);
  border-left: 4px solid var(--primary-color);
  padding: 24px;
  margin: 32px 0;
  border-radius: 8px;
}

.disclaimer-box h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 16px;
}

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
}

.contact-form {
  background-color: var(--gray-light);
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  margin: 0 auto;
}

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

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

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 60px 0 32px;
}

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

.footer-section h3 {
  color: var(--primary-light);
  margin-bottom: 16px;
}

.footer-section p,
.footer-section a {
  color: #CCCCCC;
  font-size: 16px;
  line-height: 1.8;
}

.footer-section a {
  text-decoration: none;
  transition: color 0.3s;
  display: block;
  margin-bottom: 8px;
}

.footer-section a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  color: #999999;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--white);
  padding: 24px;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
  z-index: 9999;
  display: none;
}

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

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

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

.cookie-actions {
  display: flex;
  gap: 12px;
}

.myth-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
}

.myth-card h3 {
  color: #D32F2F;
  margin-bottom: 12px;
}

.fact-card {
  background-color: var(--accent-beige);
  border-left: 4px solid var(--primary-color);
  padding: 32px;
  margin-bottom: 24px;
  border-radius: 8px;
}

.fact-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin: 40px 0;
}

.info-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 32px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.info-card h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.contact-info {
  background-color: var(--gray-light);
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 32px;
}

.contact-info h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.contact-info p {
  margin-bottom: 8px;
}

@media (max-width: 992px) {
  h1 {
    font-size: 38px;
  }
  
  h2 {
    font-size: 30px;
  }
  
  .section-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 26px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .container-custom {
    padding: 0 16px;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: 16px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }
  
  .cta-button {
    width: 100%;
    text-align: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .contact-form {
    padding: 24px;
  }
}
