@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Lato:wght@400;700&display=swap');

:root {
  --primary: #4CAF50;
  --accent-1: #8BC34A;
  --accent-2: #FFC107;
  --accent-3: #2196F3;
  --neutral-dark: #1a1a1a;
  --neutral-light: #f5f5f5;
  --white: #ffffff;
  --grey: #8a8a8a;
  --border: #e0e0e0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--neutral-dark);
  background-color: var(--white);
}

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

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--neutral-dark);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

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

body {
  padding-top: 80px;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--neutral-dark);
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--neutral-dark);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--neutral-dark);
}

section {
  padding: 5rem 2rem;
}

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

.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-1) 100%);
  color: var(--white);
  padding: 6rem 2rem !important;
  display: flex;
  align-items: center;
  min-height: 100vh;
  margin-top: -80px;
  padding-top: 150px !important;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.intro-block {
  background: var(--neutral-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-content h2 {
  margin-bottom: 1.5rem;
}

.intro-content p {
  margin-bottom: 1.2rem;
  color: var(--grey);
  line-height: 1.8;
}

.intro-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.benefit-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(76,175,80,0.15);
  border-color: var(--primary);
}

.benefit-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.benefit-card p {
  color: var(--grey);
  line-height: 1.8;
  font-size: 0.95rem;
}

.benefit-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.products-section {
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.product-card {
  text-align: center;
  padding: 2rem;
  border-radius: 8px;
  background: var(--neutral-light);
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(76,175,80,0.2);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.product-card h3 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.product-card p {
  color: var(--grey);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.cta-button {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 0.8rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  background: var(--accent-1);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(76,175,80,0.3);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.text-block h2 {
  margin-bottom: 1.5rem;
}

.text-block p {
  margin-bottom: 1.2rem;
  color: var(--grey);
  line-height: 1.8;
}

.text-block ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.text-block li {
  margin-bottom: 0.8rem;
  color: var(--grey);
  line-height: 1.7;
}

.two-column-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
}

.myths-section {
  background: var(--neutral-light);
}

.myth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.myth-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.myth-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--primary);
  font-weight: 700;
}

.myth-item p {
  color: var(--grey);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-section {
  background: var(--white);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.faq-question {
  background: var(--neutral-light);
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--neutral-dark);
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--border);
}

.faq-question .toggle {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question .toggle {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 1.5rem;
  color: var(--grey);
  background: var(--white);
  line-height: 1.8;
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  display: block;
}

.choice-section {
  background: var(--neutral-light);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.choice-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  text-align: center;
}

.choice-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.choice-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.choice-item p {
  color: var(--grey);
  line-height: 1.7;
  font-size: 0.95rem;
}

.final-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-1) 100%);
  color: var(--white);
  text-align: center;
  padding: 4rem 2rem !important;
}

.final-cta h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.final-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.contact-section {
  background: var(--white);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.contact-item p {
  color: var(--grey);
  font-size: 0.95rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--neutral-dark);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 8px rgba(76,175,80,0.1);
}

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

.form-disclaimer {
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: var(--accent-1);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(76,175,80,0.3);
}

footer {
  background: var(--neutral-dark);
  color: var(--white);
  padding: 3rem 2rem 1.5rem;
  font-size: 0.9rem;
}

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

.footer-section h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--primary);
  font-weight: 700;
}

.footer-section a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
  display: block;
  margin-bottom: 0.5rem;
}

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

.footer-section p {
  color: #cccccc;
  line-height: 1.7;
  font-size: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1.5rem;
  text-align: center;
  color: #999;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background-color: var(--white);
  margin: 5% auto;
  padding: 2.5rem;
  border-radius: 8px;
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close-modal {
  color: var(--grey);
  float: right;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: var(--neutral-dark);
}

.modal-content h2 {
  margin-top: 0;
}

.modal-content h3 {
  margin-top: 1.5rem;
  font-size: 1.2rem;
}

.modal-content p,
.modal-content li {
  color: var(--grey);
  line-height: 1.8;
  font-size: 0.95rem;
}

.modal-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--neutral-dark);
  color: var(--white);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  z-index: 1500;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-btn {
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: var(--primary);
  color: var(--white);
}

.cookie-accept:hover {
  background: var(--accent-1);
}

.cookie-decline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.cookie-decline:hover {
  background: rgba(255,255,255,0.1);
}

.cookie-learn {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

.cookie-learn:hover {
  background: rgba(76,175,80,0.1);
}

.disclaimer-banner {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 6px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.disclaimer-banner h3 {
  color: var(--neutral-dark);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.disclaimer-banner p {
  color: var(--grey);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

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

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

  .hero-image,
  .intro-image,
  .two-column-image {
    height: 250px;
  }

  .intro-block,
  .two-column,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .myth-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.85rem;
  }

  .logo {
    font-size: 1.5rem;
  }

  body {
    padding-top: 70px;
  }

  .header-content {
    padding: 1rem;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
    padding: 1.2rem;
  }

  .cookie-buttons {
    justify-content: center;
  }

  .cookie-btn {
    flex: 1;
    min-width: 120px;
  }

  section {
    padding: 3rem 1.5rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

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