:root {
  --primary-color: #5C8A74;
  --primary-hover: #4a7060;
  --text-primary: #2d2d2d;
  --text-secondary: #6b6b6b;
  --bg-light: #fafaf9;
  --bg-white: #ffffff;
  --border-color: #e5e5e4;
  --shadow-soft: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-hover: 0 4px 12px rgba(92,138,116,0.12);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--bg-light);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

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

p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.header {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: var(--shadow-soft);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  transition: opacity 0.3s;
}

.logo:hover {
  opacity: 0.8;
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
  font-weight: 400;
}

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

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

.hero {
  padding: 120px 2rem 80px;
  background: linear-gradient(135deg, rgba(250,250,249,1) 0%, rgba(245,245,244,1) 100%);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.hero-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.section {
  padding: 80px 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2rem;
}

.content-text {
  line-height: 1.8;
}

.content-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
}

.card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s;
  border: 1px solid var(--border-color);
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.ingredients-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.ingredients-list li {
  padding: 1rem 1.5rem;
  background: var(--bg-light);
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
  transition: background 0.3s;
}

.ingredients-list li:hover {
  background: #f0f4f2;
}

.disclaimer {
  background: #f0f4f2;
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item {
  margin-bottom: 1.5rem;
  background: var(--bg-white);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.faq-answer {
  color: var(--text-secondary);
  line-height: 1.8;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s;
  font-family: inherit;
  background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(92,138,116,0.1);
  background: var(--bg-white);
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: var(--shadow-hover);
  transform: translateY(-1px);
}

.footer {
  background: var(--text-primary);
  color: #e5e5e4;
  padding: 3rem 2rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.footer-section h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section p,
.footer-section a {
  color: #b5b5b4;
  line-height: 1.8;
  font-size: 0.9rem;
}

.footer-section a {
  text-decoration: none;
  transition: color 0.3s;
  cursor: pointer;
}

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

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

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

.footer-bottom {
  border-top: 1px solid rgba(229,229,228,0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: #8b8b8a;
  font-size: 0.85rem;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 12px;
  max-width: 700px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  margin: 2rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.modal-close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-secondary);
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.modal-close:hover {
  background: var(--bg-light);
  color: var(--text-primary);
}

.modal-content h2 {
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}

.modal-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.modal-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-color);
  padding: 1.5rem 2rem;
  z-index: 1500;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

.cookie-banner p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  flex: 1;
}

.cookie-banner button {
  flex-shrink: 0;
}

.educational-notice {
  background: rgba(92,138,116,0.08);
  border: 1px solid rgba(92,138,116,0.2);
  border-radius: 8px;
  padding: 1.25rem;
  margin: 2rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-align: center;
  font-style: italic;
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    background: var(--bg-white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: left 0.3s;
  }

  .nav.active {
    left: 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .content-with-image {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .section {
    padding: 60px 1.5rem;
  }

  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .modal-content {
    margin: 1rem;
    padding: 2rem 1.5rem;
  }

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