:root {
  --primary-bg: #FCFCF8;
  --accent-green: #689F38;
  --accent-olive: #827717;
  --accent-light-green: #C5E1A5;
  --accent-light-yellow: #F0F4C3;
  --text-dark: #333333;
  --text-light: #666666;
  --border-color: #e0e0e0;
  --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 17px;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
  text-transform: none;
}

h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 30px;
  margin-top: 40px;
}

h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
  margin-top: 20px;
}

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

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(252, 252, 248, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
  padding: 0;
}

header.scrolled {
  background: rgba(252, 252, 248, 0.98);
  box-shadow: var(--shadow-light);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  max-width: 1540px;
  margin: 0 auto;
  width: 100%;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-green);
  text-decoration: none;
  display: flex;
  align-items: center;
}

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

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

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

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

body {
  padding-top: 70px;
}

section {
  padding: 100px 40px;
  max-width: 1540px;
  margin: 0 auto;
}

.hero {
  background: linear-gradient(135deg, var(--accent-light-yellow) 0%, var(--accent-light-green) 50%, var(--primary-bg) 100%);
  padding: 120px 40px;
  text-align: center;
  margin-top: 0;
  padding-top: 150px;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 30px;
  color: var(--accent-olive);
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
  margin-top: 40px;
  max-height: 400px;
  object-fit: cover;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.two-column-image {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
}

.two-column-content h2 {
  margin-top: 0;
}

.two-column.reverse {
  direction: rtl;
}

.two-column.reverse > * {
  direction: ltr;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.card h3 {
  color: var(--accent-green);
  margin-top: 0;
}

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

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  box-shadow: var(--shadow-light);
  border-radius: 8px;
  overflow: hidden;
}

.comparison-table th {
  background-color: var(--accent-green);
  color: white;
  padding: 20px;
  text-align: left;
  font-weight: 600;
}

.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-color);
}

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

.comparison-table tr:hover {
  background-color: var(--accent-light-yellow);
}

.accordion {
  margin: 40px 0;
}

.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-button {
  width: 100%;
  padding: 20px;
  background-color: white;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-green);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.accordion-button.active {
  background-color: var(--accent-green);
  color: white;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background-color: #fafafa;
}

.accordion-content.show {
  max-height: 500px;
  padding: 20px;
}

.accordion-content p {
  color: var(--text-light);
  margin: 0;
}

.form-container {
  background: white;
  border-radius: 16px;
  padding: 50px;
  box-shadow: var(--shadow-light);
  max-width: 600px;
  margin: 40px auto 0;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(104, 159, 56, 0.1);
}

.form-disclaimer {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 20px;
  padding: 15px;
  background-color: var(--accent-light-yellow);
  border-radius: 8px;
  border-left: 4px solid var(--accent-olive);
}

.btn {
  display: inline-block;
  padding: 14px 40px;
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-olive) 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(104, 159, 56, 0.3);
}

.btn-info {
  background: var(--accent-green);
  padding: 12px 25px;
  font-size: 13px;
  display: inline-block;
}

.btn-info:hover {
  background: var(--accent-olive);
  color: white;
}

.context-block {
  background: linear-gradient(135deg, var(--accent-light-green) 0%, var(--accent-light-yellow) 100%);
  padding: 40px;
  border-radius: 12px;
  border-left: 5px solid var(--accent-olive);
  margin: 60px 0;
}

.context-block h3 {
  color: var(--accent-olive);
  margin-top: 0;
}

.context-block p {
  color: var(--text-dark);
  font-size: 15px;
}

footer {
  background-color: #333333;
  color: #ffffff;
  padding: 60px 40px 30px;
  margin-top: 80px;
  font-size: 14px;
  line-height: 1.8;
}

.footer-content {
  max-width: 1540px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  margin-bottom: 20px;
  color: var(--accent-light-green);
  font-size: 16px;
  font-weight: 600;
}

.footer-section p {
  color: #cccccc;
  margin-bottom: 12px;
  font-size: 13px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cccccc;
  cursor: pointer;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--accent-light-green);
}

.footer-disclaimer {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #555555;
  color: #999999;
  font-size: 12px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background-color: var(--primary-bg);
  margin: 50px auto;
  padding: 40px;
  border-radius: 12px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-medium);
  animation: slideIn 0.3s ease;
}

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--accent-light-green);
  padding-bottom: 20px;
}

.modal-header h2 {
  margin: 0;
  color: var(--accent-olive);
  font-size: 28px;
}

.modal-close {
  font-size: 32px;
  font-weight: bold;
  color: var(--text-light);
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

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

.modal-body h3 {
  color: var(--accent-green);
  margin-top: 25px;
  margin-bottom: 15px;
}

.modal-body p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 15px;
}

.modal-body ul,
.modal-body ol {
  margin-left: 20px;
  margin-bottom: 15px;
}

.modal-body li {
  margin-bottom: 8px;
  color: var(--text-light);
  font-size: 14px;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #333333;
  color: white;
  padding: 20px 40px;
  z-index: 1500;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1540px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
}

.cookie-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
}

.btn-accept {
  background-color: var(--accent-green);
  color: white;
}

.btn-accept:hover {
  background-color: var(--accent-olive);
}

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

.btn-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.myth-item {
  background: white;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 12px;
  border-left: 5px solid var(--accent-green);
  box-shadow: var(--shadow-light);
}

.myth-item h3 {
  color: var(--accent-olive);
  margin-top: 0;
}

.myth-item .myth-false {
  color: #d32f2f;
  font-weight: 600;
  margin-bottom: 15px;
}

.myth-item .myth-true {
  color: var(--accent-green);
  font-weight: 600;
  margin-top: 15px;
}

@media (max-width: 768px) {
  header {
    padding: 0 20px;
  }

  .navbar {
    padding: 15px 20px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: var(--primary-bg);
    padding: 20px;
    gap: 15px;
    border-bottom: 1px solid var(--border-color);
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 26px;
  }

  section {
    padding: 60px 20px;
  }

  .hero {
    padding: 80px 20px;
    padding-top: 120px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .two-column.reverse {
    direction: ltr;
  }

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

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

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

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

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

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