:root {
  --primary-color: #008080;
  --accent-light: #FFDAB9;
  --accent-green: #8FBC8F;
  --accent-gold: #DAA520;
  --white: #FFFFFF;
  --dark-gray: #2C2C2C;
  --light-gray: #F5F5F5;
  --border-color: #E0E0E0;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

p {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

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

a:hover {
  color: var(--accent-gold);
}

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

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

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo:hover {
  color: var(--accent-gold);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

nav a {
  color: var(--dark-gray);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
  border-bottom: 3px solid transparent;
  padding-bottom: 0.5rem;
}

nav a:hover,
nav a.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

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

.section {
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: fadeIn 0.8s ease-in-out;
}

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

.section.reverse {
  flex-direction: row-reverse;
}

.section-content {
  flex: 1;
  min-width: 300px;
}

.section-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
}

.section-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 128, 128, 0.12);
  transition: transform 0.3s ease;
  max-height: 400px;
  object-fit: cover;
}

.section-image img:hover {
  transform: translateY(-5px);
}

.hero {
  background: linear-gradient(135deg, rgba(0, 128, 128, 0.05) 0%, rgba(143, 188, 143, 0.05) 100%);
  padding: 6rem 2rem;
  text-align: center;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.3rem;
  color: var(--dark-gray);
  margin-bottom: 2rem;
  max-width: 800px;
}

.hero-image {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  max-height: 450px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 128, 128, 0.15);
}

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

.card {
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.card-image {
  width: 100%;
  height: 200px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card h3 {
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
}

.card p {
  color: var(--dark-gray);
  font-size: 1rem;
}

.accordion {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.accordion-item {
  border-bottom: 2px solid var(--border-color);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-button {
  background: var(--white);
  border: none;
  padding: 1.5rem;
  width: 100%;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.accordion-button:hover {
  background: var(--light-gray);
  color: var(--accent-gold);
}

.accordion-button.active {
  background: rgba(0, 128, 128, 0.08);
  color: var(--primary-color);
}

.accordion-content {
  display: none;
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--dark-gray);
  font-size: 1rem;
  line-height: 1.8;
}

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

button.btn,
input[type="submit"] {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

button.btn:hover,
input[type="submit"]:hover {
  background: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 128, 128, 0.3);
}

button.btn-secondary {
  background: var(--accent-green);
}

button.btn-secondary:hover {
  background: var(--primary-color);
}

form {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  margin: 2rem auto;
}

form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-color);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

form input[type="text"],
form input[type="email"],
form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1.2rem;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Lora', serif;
  transition: border-color 0.3s ease;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 8px rgba(0, 128, 128, 0.2);
}

.form-disclaimer {
  font-size: 0.9rem;
  color: var(--dark-gray);
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(0, 128, 128, 0.08);
  border-left: 4px solid var(--primary-color);
  border-radius: 4px;
}

footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 3rem 2rem;
  margin-top: 5rem;
}

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

.footer-section h4 {
  color: var(--accent-light);
  margin-bottom: 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

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

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

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

.footer-info {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 2px solid rgba(255, 218, 185, 0.2);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.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;
}

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

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

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

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

.modal-header {
  border-bottom: 3px solid var(--primary-color);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.modal-header h2 {
  color: var(--primary-color);
  margin: 0;
}

.modal p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--dark-gray);
}

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

.modal li {
  margin-bottom: 0.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-gray);
  color: var(--white);
  padding: 1.5rem 2rem;
  z-index: 999;
  display: none;
  animation: slideUp 0.4s ease;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
}

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

.cookie-content {
  flex: 1;
  min-width: 300px;
}

.cookie-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--white);
}

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

.cookie-btn {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cookie-btn-accept {
  background: var(--accent-gold);
  color: var(--dark-gray);
}

.cookie-btn-accept:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

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

.cookie-btn-reject:hover {
  background: var(--white);
  color: var(--dark-gray);
}

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

.cookie-btn-learn:hover {
  background: var(--accent-green);
  transform: translateY(-2px);
}

.disclaimer-box {
  background: rgba(218, 165, 32, 0.1);
  border-left: 4px solid var(--accent-gold);
  padding: 1.5rem;
  border-radius: 6px;
  margin: 2rem 0;
}

.disclaimer-box h3 {
  color: var(--accent-gold);
  margin-top: 0;
}

.disclaimer-box p {
  color: var(--dark-gray);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.disclaimer-box p:last-child {
  margin-bottom: 0;
}

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

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  nav ul {
    gap: 1rem;
    flex-direction: column;
  }

  nav a {
    font-size: 0.9rem;
  }

  .section {
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 2rem;
  }

  .section.reverse {
    flex-direction: column;
  }

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

  .hero {
    padding: 3rem 1.5rem;
    min-height: auto;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

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

  form {
    padding: 1.5rem;
    max-width: 100%;
  }

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

  .modal-content {
    width: 95%;
    margin: 20% auto;
  }

  .cookie-banner.show {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
  }

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

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

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.health-warning {
  background: rgba(0, 128, 128, 0.08);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  border-radius: 6px;
  margin: 2rem 0;
}

.health-warning p {
  color: var(--dark-gray);
  margin: 0;
  font-size: 0.95rem;
}

.soft-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(0, 128, 128, 0.05) 0%, rgba(143, 188, 143, 0.05) 100%);
}

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

.soft-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.soft-cta .btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.soft-cta .btn:hover {
  background: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 128, 128, 0.3);
}
