:root {
  --cream: #FFFDF7;
  --olive: #8A9A5B;
  --linen: #F2E8CF;
  --earth: #4A3728;
  --light-olive: rgba(138, 154, 91, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Karla', sans-serif;
  background-color: var(--cream);
  color: var(--earth);
  line-height: 1.88;
  font-size: 16px;
}

h1 {
  font-family: 'Lora', serif;
  font-size: 5.4rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--earth);
  position: relative;
  padding-bottom: 1rem;
}

h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 4px;
  background-color: var(--olive);
}

h2 {
  font-family: 'Lora', serif;
  font-size: 2.45rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--earth);
  line-height: 1.3;
}

h3 {
  font-family: 'Lora', serif;
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--earth);
}

h4 {
  font-family: 'Lora', serif;
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--earth);
}

p {
  margin-bottom: 1.5rem;
  color: var(--earth);
  letter-spacing: 0.3px;
}

a {
  color: var(--olive);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--earth);
  text-decoration: underline;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--cream);
  border-bottom: 1px solid rgba(74, 55, 40, 0.1);
  z-index: 1000;
  padding: 1rem 2rem;
}

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

.logo {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--earth);
  text-decoration: none;
}

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

.nav-links a {
  font-size: 0.95rem;
  color: var(--earth);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--olive);
  text-decoration: none;
}

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

main {
  padding-top: 80px;
}

.hero {
  height: 94vh;
  background: linear-gradient(135deg, var(--cream) 0%, var(--linen) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

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

.hero-text {
  z-index: 2;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  width: 90%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(74, 55, 40, 0.15);
}

section {
  padding: 6rem 2rem;
}

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

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

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

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

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

.section-image {
  width: 85%;
  margin: 0 auto;
}

.section-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(74, 55, 40, 0.1);
}

.button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--olive);
  color: var(--cream);
  border: none;
  border-radius: 50px;
  font-family: 'Karla', sans-serif;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.45s ease;
  box-shadow: 0 6px 20px rgba(138, 154, 91, 0.25);
  letter-spacing: 0.5px;
}

.button:hover {
  background-color: var(--earth);
  box-shadow: 0 8px 30px rgba(74, 55, 40, 0.3);
  transform: scale(1.05);
  color: var(--cream);
  text-decoration: none;
}

.card {
  background-color: var(--cream);
  border: 2px solid var(--olive);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(138, 154, 91, 0.2);
}

.card h3 {
  color: var(--earth);
  transition: color 0.3s ease;
}

.card:hover h3 {
  color: var(--olive);
}

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

.myth-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
}

.myth-table th {
  background-color: var(--olive);
  color: var(--cream);
  padding: 1rem;
  text-align: left;
  font-weight: 500;
  font-family: 'Lora', serif;
}

.myth-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--light-olive);
}

.myth-table tr:last-child td {
  border-bottom: none;
}

.myth-table tr:nth-child(even) {
  background-color: var(--light-olive);
}

footer {
  background-color: var(--earth);
  color: var(--cream);
  padding: 3rem 2rem;
  margin-top: 4rem;
}

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

.footer-section h4 {
  color: var(--linen);
  margin-bottom: 1rem;
  font-family: 'Lora', serif;
  font-size: 1.1rem;
}

.footer-section p,
.footer-section li {
  color: rgba(255, 253, 247, 0.8);
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: var(--linen);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 253, 247, 0.2);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 253, 247, 0.7);
  font-size: 0.9rem;
}

.disclaimer {
  background-color: var(--linen);
  border-left: 4px solid var(--olive);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 6px;
}

.disclaimer p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--olive);
  border-radius: 8px;
  font-family: 'Karla', sans-serif;
  font-size: 1rem;
  color: var(--earth);
  background-color: var(--cream);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--earth);
  background-color: rgba(242, 232, 207, 0.5);
}

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

.form-width {
  max-width: 600px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--earth);
  color: var(--cream);
  padding: 1.5rem 2rem;
  z-index: 999;
  border-top: 2px solid var(--olive);
  display: none;
}

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

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

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

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

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-family: 'Karla', sans-serif;
}

.cookie-accept {
  background-color: var(--olive);
  color: var(--cream);
}

.cookie-accept:hover {
  background-color: var(--linen);
  color: var(--earth);
}

.cookie-reject {
  background-color: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
}

.cookie-reject:hover {
  background-color: rgba(255, 253, 247, 0.1);
}

.cookie-learn {
  background-color: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
  text-decoration: underline;
}

.cookie-learn:hover {
  background-color: rgba(255, 253, 247, 0.1);
}

.hidden {
  display: none !important;
}

.center-text {
  text-align: center;
}

.faq-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: var(--light-olive);
  border-radius: 8px;
  border-left: 4px solid var(--olive);
}

.faq-question {
  font-weight: 500;
  color: var(--earth);
  margin-bottom: 0.75rem;
}

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

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-image {
    order: -1;
  }

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

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

  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 768px) {
  header {
    padding: 1rem;
  }

  .navbar-container {
    justify-content: space-between;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--cream);
    border-bottom: 1px solid rgba(74, 55, 40, 0.1);
    padding: 1rem;
    gap: 0.5rem;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  main {
    padding-top: 70px;
  }

  h1 {
    font-size: 2.5rem;
    padding-bottom: 0.75rem;
  }

  h1::after {
    width: 100px;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero {
    height: auto;
    padding: 2rem 0;
  }

  .hero-image img {
    width: 100%;
  }

  .section-image {
    width: 100%;
  }

  section {
    padding: 3rem 1.5rem;
  }

  .section-grid {
    gap: 2rem;
  }

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

  .cookie-content {
    flex-direction: column;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: flex-start;
  }

  .cookie-text {
    font-size: 0.85rem;
  }
}

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

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  p {
    font-size: 0.95rem;
  }

  section {
    padding: 2rem 1rem;
  }

  .button {
    width: 100%;
    text-align: center;
  }

  .myth-table {
    font-size: 0.85rem;
  }

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

  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
