:root {
  --primary: #EDEAE4;
  --secondary: #F8F8F8;
  --neutral-dark: #333333;
  --neutral-light: #E0E0E0;
  --accent-1: #6B8E23;
  --accent-2: #A0522D;
  --accent-3: #5F9EA0;
  --base-spacing: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Garamond', serif;
  color: var(--neutral-dark);
  background-color: #ffffff;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Segoe UI', 'Helvetica', sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  color: var(--neutral-dark);
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  color: var(--neutral-dark);
  margin-top: 2rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--accent-1);
  margin-top: 1.5rem;
}

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

a {
  color: var(--accent-1);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

a:hover {
  border-bottom: 1px solid var(--accent-1);
  color: var(--accent-2);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid var(--neutral-light);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--neutral-dark);
  font-family: 'Segoe UI', sans-serif;
  letter-spacing: 1px;
}

.logo a {
  color: var(--neutral-dark);
  border: none;
}

.logo a:hover {
  color: var(--accent-1);
  border: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  font-size: 0.95rem;
  color: var(--neutral-dark);
  border: none;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-1);
  transition: width 0.3s ease;
}

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

nav a.active {
  color: var(--accent-1);
}

nav a.active::after {
  width: 100%;
}

main {
  margin-top: 60px;
  padding-top: 2rem;
}

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

section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--neutral-light);
}

section:last-of-type {
  border-bottom: none;
}

.section-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 0;
}

.hero-content h1 {
  font-size: 2.5rem;
}

.section-hero img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-text-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
}

.section-text-image img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.section-image-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
}

.section-image-text img {
  order: -1;
  max-width: 100%;
  height: auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem 0;
}

.card {
  border: 1px solid var(--neutral-light);
  padding: 2rem;
  background: var(--secondary);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.card h3 {
  margin-top: 0;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent-1);
}

.decorative-line {
  width: 40px;
  height: 2px;
  background: var(--accent-1);
  margin: 1.5rem 0;
}

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

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

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

th {
  background-color: var(--primary);
  padding: 1rem;
  text-align: left;
  font-weight: 500;
  border-bottom: 2px solid var(--accent-1);
  font-family: 'Segoe UI', sans-serif;
}

td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--neutral-light);
}

tr:hover {
  background-color: var(--secondary);
}

footer {
  background-color: #ffffff;
  border-top: 1px solid var(--neutral-light);
  padding: 3rem 2rem;
  margin-top: 4rem;
}

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

.footer-section h4 {
  font-family: 'Segoe UI', sans-serif;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--neutral-dark);
}

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

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

.footer-section a {
  font-size: 0.9rem;
  color: var(--accent-1);
}

.contact-info {
  font-size: 0.9rem;
  line-height: 1.8;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--neutral-light);
  margin-top: 2rem;
  color: #999;
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--neutral-light);
  padding: 1.5rem 2rem;
  display: none;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-content {
  flex: 1;
  font-size: 0.9rem;
}

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

button {
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--accent-1);
  background: #ffffff;
  color: var(--accent-1);
  cursor: pointer;
  font-family: 'Segoe UI', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

button:hover {
  background: var(--accent-1);
  color: #ffffff;
}

button.btn-accept {
  background: var(--accent-1);
  color: #ffffff;
  border-color: var(--accent-1);
}

button.btn-accept:hover {
  background: #5a7319;
  border-color: #5a7319;
}

.glossary {
  margin: 2rem 0;
}

.glossary-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--neutral-light);
}

.glossary-term {
  font-weight: 600;
  color: var(--accent-1);
  margin-bottom: 0.5rem;
}

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

.faq-question {
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-item {
  margin-bottom: 2rem;
  padding-left: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  background: var(--accent-1);
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 2px var(--accent-1);
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 12px;
  width: 2px;
  height: 100%;
  background: var(--neutral-light);
}

.timeline-item:last-child::after {
  display: none;
}

.stat-strip {
  background: var(--primary);
  padding: 2rem;
  margin: 2rem 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent-1);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--neutral-dark);
}

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

  h2 {
    font-size: 1.5rem;
  }

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

  nav ul {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .section-hero,
  .section-text-image,
  .section-image-text {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-image-text img {
    order: 0;
  }

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

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

  .cookie-banner.active {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  main {
    margin-top: 120px;
  }
}

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

  h2 {
    font-size: 1.25rem;
  }

  .container {
    padding: 0 1rem;
  }

  nav ul {
    gap: 0.5rem;
  }

  nav a {
    font-size: 0.8rem;
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }
}
