:root {
  --primary-color: #4A7D5C;
  --accent-1: #8EAA9C;
  --accent-2: #D8CCA7;
  --accent-3: #A07A4F;
  --text-dark: #2C2C2C;
  --text-light: #666666;
  --bg-white: #FFFFFF;
  --bg-light: #F8F8F8;
  --border-color: #E5E5E5;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', 'Source Sans Pro', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', 'Lato', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

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

h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

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

p {
  margin-bottom: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

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

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

button {
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn {
  padding: 12px 24px;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background-color: var(--accent-3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 125, 92, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

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

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  width: 40px;
  height: 40px;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

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

main {
  margin-top: 80px;
}

section {
  padding: 4rem 2rem;
}

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

.section-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-1) 100%);
  color: white;
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-image {
  max-width: 100%;
  height: 400px;
  object-fit: cover;
  margin-top: 2rem;
  border-radius: 8px;
}

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

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

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

.section-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.section-text {
  flex: 1;
}

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

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

.category-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(74, 125, 92, 0.15);
  transform: translateY(-4px);
}

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

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

.category-card p {
  font-size: 14px;
  margin-bottom: 1.5rem;
}

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

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  color: var(--accent-3);
}

.faq-toggle {
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  display: none;
  margin-top: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

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

.disclaimer-box {
  background-color: var(--bg-light);
  border-left: 4px solid var(--accent-3);
  padding: 2rem;
  border-radius: 4px;
  margin: 2rem 0;
}

.disclaimer-box h3 {
  color: var(--accent-3);
}

.cta-section {
  text-align: center;
  padding: 3rem 2rem;
  background-color: var(--bg-light);
  border-radius: 8px;
  margin: 3rem 0;
}

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

.cta-section p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.form-group {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(74, 125, 92, 0.1);
}

.form-disclaimer {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 1rem;
  padding: 1rem;
  background-color: var(--bg-white);
  border-radius: 4px;
  border: 1px solid var(--border-color);
}

footer {
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 3rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

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

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

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

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

.footer-section a {
  color: var(--bg-light);
  font-size: 14px;
  transition: color 0.3s ease;
}

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

.footer-contact {
  font-size: 14px;
  line-height: 1.8;
}

.footer-disclaimer {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  font-size: 12px;
  color: var(--accent-1);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

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

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

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: white;
  padding: 1.5rem 2rem;
  display: none;
  z-index: 1500;
  border-top: 4px solid var(--primary-color);
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

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

.cookie-buttons button {
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.cookie-buttons .btn-accept:hover {
  background-color: var(--accent-3);
}

.cookie-buttons .btn-decline {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.cookie-buttons .btn-decline:hover {
  background-color: white;
  color: var(--text-dark);
}

.cookie-buttons .btn-learn {
  background-color: transparent;
  color: white;
  text-decoration: underline;
}

.cookie-buttons .btn-learn:hover {
  color: var(--accent-2);
}

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

.section-accent {
  background-color: rgba(74, 125, 92, 0.05);
}

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

  h2 {
    font-size: 1.5rem;
  }

  .navbar {
    padding: 1rem;
  }

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

  .section-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

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

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

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

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

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

  section {
    padding: 2rem 1rem;
  }

  .modal-content {
    margin: 1rem;
    max-height: 90vh;
  }

  .hero-image {
    height: 250px;
  }
}
