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

:root {
  --primary-color: #F5F5DC;
  --accent-sage: #A0D8B4;
  --accent-terracotta: #E27D60;
  --dark-text: #333333;
}

html, body {
  font-family: 'Lora', serif;
  background-color: var(--primary-color);
  color: var(--dark-text);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-text);
  font-weight: 600;
  margin: 0;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
}

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

header {
  position: sticky;
  top: 0;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 999;
}

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

.logo-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-text);
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-brand img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--dark-text);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
}

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

.container-wide {
  max-width: 100%;
}

section {
  padding: 4rem 2rem;
}

.hero-section {
  background: linear-gradient(135deg, rgba(160, 216, 180, 0.1) 0%, rgba(226, 125, 96, 0.05) 100%);
  padding: 0;
  display: flex;
  align-items: center;
  min-height: 600px;
  margin-bottom: 2rem;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 2rem;
}

.hero-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  max-height: 500px;
}

.hero-text h1 {
  color: var(--dark-text);
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--dark-text);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.hero-badge {
  display: inline-block;
  background-color: var(--accent-sage);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1rem;
  }
  
  .hero-section {
    min-height: auto;
    margin-bottom: 1rem;
  }
}

.intro-section {
  background-color: white;
  padding: 3rem 2rem;
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
}

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

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 4rem 0;
}

.section-grid.reverse {
  direction: rtl;
}

.section-grid.reverse > * {
  direction: ltr;
}

.section-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  max-height: 400px;
}

.section-content {
  padding: 2rem;
}

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

.section-content ul, .section-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.section-content li {
  margin: 0.8rem 0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .section-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .section-grid.reverse {
    direction: ltr;
  }
  
  .section-content {
    padding: 1rem;
  }
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

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

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
}

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

.card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.table-section {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

th {
  background-color: var(--accent-sage);
  color: white;
  padding: 1rem;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

td {
  padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

tr:hover {
  background-color: #f9f9f9;
}

.myths-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

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

.fact-block {
  background: #f5f5f5;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-sage);
}

.myth-block h4, .fact-block h4 {
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.myth-block h4 {
  color: var(--accent-terracotta);
}

.fact-block h4 {
  color: var(--accent-sage);
}

@media (max-width: 768px) {
  .myths-section {
    grid-template-columns: 1fr;
  }
}

.faq-section {
  background: white;
  border-radius: 8px;
  padding: 2rem;
}

.accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-header {
  background-color: #f5f5f5;
  padding: 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: #efefef;
}

.accordion-header.active {
  background-color: var(--accent-sage);
  color: white;
}

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

.accordion-toggle.active {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 1.5rem;
  display: none;
  background-color: white;
  line-height: 1.8;
}

.accordion-content.active {
  display: block;
}

.disclaimer-section {
  background-color: rgba(160, 216, 180, 0.1);
  border-left: 4px solid var(--accent-sage);
  padding: 2rem;
  border-radius: 4px;
  margin: 3rem 0;
}

.disclaimer-section h3 {
  color: var(--accent-sage);
  margin-bottom: 1rem;
}

.disclaimer-section p {
  color: var(--dark-text);
  line-height: 1.8;
}

.cta-section {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--accent-sage) 0%, #7fc9a0 100%);
  border-radius: 8px;
  margin: 3rem 0;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: white;
  color: var(--accent-sage);
  text-decoration: none;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: white;
  color: var(--accent-sage);
}

footer {
  background-color: var(--dark-text);
  color: white;
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
  font-family: 'Poppins', sans-serif;
}

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

.footer-column h4 {
  margin-bottom: 1rem;
  color: var(--accent-sage);
  font-size: 1rem;
}

.footer-column p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--accent-sage);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}

.footer-links a {
  font-size: 0.85rem;
}

.footer-divider {
  border-top: 1px solid #555;
  margin: 2rem 0;
  padding-top: 1rem;
}

.footer-bottom {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.85rem;
  color: #999;
}

.footer-message {
  color: var(--accent-sage);
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  footer {
    padding: 2rem 1rem 1rem;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  overflow-y: auto;
}

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

.modal-content {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  max-width: 700px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: slideIn 0.3s ease;
}

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

.close-modal {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #999;
  transition: color 0.3s ease;
  background: none;
  border: none;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.modal-content h2 {
  margin-top: 0;
  padding-right: 2rem;
}

.modal-content p {
  line-height: 1.7;
  color: #555;
}

.modal-content ul, .modal-content ol {
  margin: 1rem 0;
  padding-left: 2rem;
}

.modal-content li {
  margin: 0.5rem 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  border-top: 1px solid #ddd;
  padding: 1.5rem 2rem;
  z-index: 998;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  font-family: 'Poppins', sans-serif;
}

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

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
  }
}

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
  color: #666;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

.cookie-accept:hover {
  background-color: #8fcda4;
}

.cookie-reject {
  background-color: #f0f0f0;
  color: var(--dark-text);
}

.cookie-reject:hover {
  background-color: #e0e0e0;
}

.cookie-more {
  background-color: transparent;
  color: var(--accent-sage);
  text-decoration: underline;
  padding: 0.6rem 0;
}

.cookie-more:hover {
  color: var(--dark-text);
}

.thank-you-message {
  display: none;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--accent-sage);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  z-index: 1001;
  animation: slideUp 0.3s ease;
}

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

.thank-you-message.active {
  display: block;
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Lora:wght@400;500;600&display=swap');
