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

:root {
  --primary: #F5F5DC;
  --accent-green: #4CAF50;
  --accent-amber: #FFC107;
  --accent-blue: #2196F3;
  --text-dark: #2c3e50;
  --text-light: #555;
  --border-light: #e0e0e0;
  --bg-light: #fafaf8;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  background-color: var(--primary);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

header {
  background-color: var(--primary);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

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

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

nav a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--accent-green);
}

footer {
  background-color: var(--text-dark);
  color: white;
  margin-top: 96px;
  padding: 60px 80px;
}

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

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

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

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.9;
}

.footer-section a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 30px;
  text-align: center;
  font-size: 12px;
  opacity: 0.8;
}

main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 96px 0;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.hero-content p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.section {
  padding: 96px 0;
  border-bottom: 1px solid var(--border-light);
}

.section h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 48px;
  color: var(--text-dark);
  line-height: 1.2;
}

.section h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-dark);
}

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

.content-text p {
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
}

.content-text ul,
.content-text ol {
  margin-left: 24px;
  margin-bottom: 20px;
}

.content-text li {
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--text-light);
}

.content-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.card {
  background-color: white;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

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

.card-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(76, 175, 80, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
}

.card h3 {
  margin-bottom: 16px;
  color: var(--text-dark);
}

.card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  overflow: hidden;
}

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

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

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

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(33, 150, 243, 0.1));
  padding: 48px;
  border-radius: 8px;
  margin: 48px 0;
}

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

.stat-bar {
  width: 100%;
  height: 8px;
  background-color: var(--border-light);
  border-radius: 4px;
  margin: 16px 0;
  overflow: hidden;
}

.stat-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
  border-radius: 4px;
}

.numbered-list {
  counter-reset: step-counter;
  list-style: none;
  margin-top: 32px;
}

.numbered-list li {
  counter-increment: step-counter;
  margin-bottom: 32px;
  padding-left: 60px;
  position: relative;
}

.numbered-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--accent-green);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.glossary-container {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 48px;
  margin-top: 48px;
}

.glossary-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.glossary-letter {
  padding: 8px 12px;
  background-color: white;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.3s;
}

.glossary-letter:hover,
.glossary-letter.active {
  background-color: var(--accent-green);
  color: white;
  border-color: var(--accent-green);
}

.glossary-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.glossary-term {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.glossary-term strong {
  color: var(--accent-green);
  display: block;
  margin-bottom: 8px;
}

.accordion {
  margin-top: 48px;
}

.accordion-item {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  margin-bottom: 16px;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.accordion-header {
  padding: 20px;
  background-color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.3s;
}

.accordion-header:hover {
  background-color: var(--bg-light);
}

.accordion-header.active {
  background-color: rgba(76, 175, 80, 0.1);
  color: var(--accent-green);
}

.accordion-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.3s;
}

.accordion-header.active .accordion-toggle {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

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

.accordion-content p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
}

.contact-form {
  background-color: white;
  padding: 48px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  max-width: 600px;
  margin: 48px 0;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text-dark);
  transition: border-color 0.3s;
}

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

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

.form-disclaimer {
  background-color: rgba(33, 150, 243, 0.05);
  border-left: 4px solid var(--accent-blue);
  padding: 16px;
  border-radius: 4px;
  font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--accent-green);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.btn:hover {
  background-color: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.3);
}

.btn-secondary {
  background-color: var(--accent-blue);
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.2);
}

.btn-secondary:hover {
  background-color: #1976d2;
  box-shadow: 0 6px 16px rgba(33, 150, 243, 0.3);
}

.info-box {
  background-color: rgba(76, 175, 80, 0.05);
  border-left: 4px solid var(--accent-green);
  padding: 24px;
  border-radius: 4px;
  margin: 32px 0;
}

.info-box p {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.8;
}

.highlight-text {
  background-color: rgba(255, 193, 7, 0.15);
  padding: 2px 6px;
  border-radius: 3px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: var(--text-dark);
  color: white;
  padding: 24px 80px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  display: none;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  gap: 24px;
}

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

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

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

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

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

.cookie-accept:hover {
  background-color: #45a049;
}

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

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

.cookie-learn {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

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

.page-header {
  padding: 60px 0 40px;
}

.page-header h1 {
  font-size: 44px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.page-intro {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 800px;
}

.thank-you-content {
  text-align: center;
  padding: 96px 0;
}

.thank-you-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 20px;
}

.thank-you-content p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.8;
}

.breadcrumb {
  font-size: 13px;
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--accent-green);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .header-container,
  main {
    padding: 20px 40px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section h2 {
    font-size: 32px;
  }
  
  .hero-section,
  .section-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-strip {
    grid-template-columns: 1fr;
  }
  
  .glossary-list {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .cookie-banner {
    padding: 20px 40px;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  html {
    font-size: 14px;
  }
  
  .header-container,
  main,
  footer {
    padding: 16px 20px;
  }
  
  nav ul {
    gap: 16px;
    font-size: 12px;
  }
  
  .section h2 {
    font-size: 28px;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .glossary-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .cookie-banner {
    padding: 16px;
  }
}
