html, body {
  margin: 0;
  padding: 0;
  font-family: Georgia, serif;
  font-size: 1.22rem;
  line-height: 1.95;
  color: #4A5568;
  background-color: #FEFCF3;
  overflow-x: hidden;
}

h1 {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: -1.3px;
  color: #000;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

h2 {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 2.875rem;
  font-weight: 600;
  color: #4A5568;
  margin: 0 0 1.5rem 0;
}

h3 {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.875rem;
  font-weight: 500;
  color: #4A5568;
  margin: 0 0 1rem 0;
}

p {
  margin: 0 0 1.5rem 0;
  color: #4A5568;
}

.container-main {
  max-width: 1620px;
  margin: 0 auto;
  padding: 0 7vw;
}

header {
  position: sticky;
  top: 0;
  background-color: #FEFCF3;
  border-bottom: 1px solid rgba(74, 85, 104, 0.1);
  padding: 1.5rem 7vw;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

header.scrolled {
  box-shadow: 0 2px 8px rgba(74, 85, 104, 0.1);
}

.header-content {
  max-width: 1620px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo:hover {
  color: #A3BFFA;
}

nav a {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  color: #4A5568;
  text-decoration: none;
  margin-left: 2rem;
  position: relative;
  transition: color 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #A0522D;
  transition: width 0.3s ease;
}

nav a:hover {
  color: #A3BFFA;
}

nav a:hover::after {
  width: 100%;
}

.hero-section {
  width: 100vw;
  margin-left: calc(-7vw);
  padding: 0;
  background: linear-gradient(135deg, #FEFCF3 0%, #E8E4DC 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.hero-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(254, 252, 243, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 7vw;
}

.hero-content {
  text-align: center;
  max-width: 900px;
}

.hero-content h1 {
  color: #000;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #4A5568;
}

section {
  padding: 180px 0;
  border-top: 1px solid rgba(74, 85, 104, 0.05);
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 2rem;
  align-items: center;
}

.section-text {
  grid-column: span 6;
}

.section-visual {
  grid-column: span 4;
}

.section-visual img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.visual-right {
  grid-column: span 4;
  order: 2;
}

.text-right {
  grid-column: span 6;
  order: 1;
}

.bg-gradient-soft {
  background: linear-gradient(180deg, #FEFCF3 0%, rgba(163, 191, 250, 0.05) 100%);
}

.bg-gradient-warm {
  background: linear-gradient(180deg, rgba(163, 191, 250, 0.08) 0%, #FEFCF3 100%);
}

.italic-periwinkle {
  font-style: italic;
  color: #A3BFFA;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 1rem;
}

.comparison-table thead {
  background-color: #A3BFFA;
  color: #000;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #E8E4DC;
}

.comparison-table tbody tr:hover {
  background-color: rgba(163, 191, 250, 0.05);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.card {
  background-color: #fff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(74, 85, 104, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(163, 191, 250, 0.3);
  transform: translateY(-4px);
  border: 1px solid #A3BFFA;
}

.card h3 {
  color: #4A5568;
  margin-bottom: 1rem;
}

.card p {
  color: #666;
  margin-bottom: 1.5rem;
}

.card-link {
  color: #A3BFFA;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.card-link:hover {
  color: #A0522D;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, #FEFCF3 0%, #A3BFFA 100%);
  color: #4A5568;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
}

.cta-button:hover {
  color: #000;
  box-shadow: 0 4px 16px rgba(163, 191, 250, 0.4);
  animation: ripple 0.6s ease-out;
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(163, 191, 250, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(163, 191, 250, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(163, 191, 250, 0);
  }
}

.misconceptions-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.misconceptions-list li {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  position: relative;
}

.misconceptions-list li::before {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  left: 0;
  font-weight: 600;
  color: #A3BFFA;
}

.faq-section {
  margin: 2rem 0;
}

.faq-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #E8E4DC;
}

.faq-item h4 {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.2rem;
  color: #4A5568;
  margin: 0 0 0.5rem 0;
}

.faq-item p {
  color: #666;
  margin: 0;
}

footer {
  background-color: #4A5568;
  color: #FEFCF3;
  padding: 3rem 7vw;
  margin-top: 4rem;
}

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

.footer-section h4 {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #A3BFFA;
}

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

.footer-section a:hover {
  color: #A3BFFA;
}

.footer-disclaimer {
  font-size: 0.9rem;
  margin-top: 1.5rem;
  color: #E8E4DC;
}

.contact-form {
  max-width: 600px;
  margin: 2rem 0;
}

.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #4A5568;
}

.form-group input,
.form-group textarea {
  padding: 1rem;
  border: 1px solid #E8E4DC;
  border-radius: 4px;
  font-family: Georgia, serif;
  font-size: 1rem;
  color: #4A5568;
  background-color: #fff;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #A3BFFA;
  box-shadow: 0 0 0 3px rgba(163, 191, 250, 0.1);
}

.form-disclaimer {
  background-color: rgba(163, 191, 250, 0.1);
  border-left: 4px solid #A3BFFA;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
}

.form-disclaimer p {
  font-size: 0.95rem;
  margin: 0;
  color: #4A5568;
}

.health-disclaimer {
  background-color: rgba(160, 82, 45, 0.1);
  border-left: 4px solid #A0522D;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.health-disclaimer p {
  font-size: 0.95rem;
  color: #4A5568;
  margin: 0.5rem 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #4A5568;
  color: #FEFCF3;
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 16px rgba(74, 85, 104, 0.3);
  z-index: 2000;
  display: none;
}

.cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-content {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background-color: #A3BFFA;
  color: #000;
}

.cookie-btn-accept:hover {
  background-color: #A0522D;
  color: #fff;
}

.cookie-btn-reject {
  background-color: transparent;
  color: #FEFCF3;
  border: 1px solid #FEFCF3;
}

.cookie-btn-reject:hover {
  background-color: rgba(254, 252, 243, 0.1);
}

.cookie-btn-learn {
  background-color: transparent;
  color: #A3BFFA;
  border: 1px solid #A3BFFA;
}

.cookie-btn-learn:hover {
  background-color: #A3BFFA;
  color: #000;
}

.fade-in {
  animation: fadeIn 0.8s ease-in;
}

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

@media (max-width: 768px) {
  .container-main {
    padding: 0 1.5rem;
  }

  header {
    padding: 1rem 1.5rem;
  }

  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  nav {
    display: none;
  }

  nav.mobile-active {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  nav a {
    margin-left: 0;
    padding: 0.5rem 0;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  h3 {
    font-size: 1.25rem;
  }

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

  .section-text,
  .section-visual,
  .visual-right,
  .text-right {
    grid-column: span 1;
    order: 0 !important;
  }

  section {
    padding: 100px 0;
  }

  .hero-section {
    min-height: 400px;
  }

  .comparison-table {
    font-size: 0.9rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem;
  }

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

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

  .cookie-banner.show {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
