:root {
  --primary-dark: #2b3e50;
  --primary-accent-yellow: #c4a747;
  --primary-accent-green: #7a8f6a;
  --neutral-light: #f5f3f0;
  --neutral-gray: #9a9a9a;
  --neutral-dark: #3d3d3d;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', 'Lato', sans-serif;
  color: var(--primary-dark);
  background-color: #ffffff;
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Raleway', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 30px;
}

h2 {
  font-size: 36px;
  color: var(--primary-dark);
  margin-bottom: 25px;
  margin-top: 40px;
}

h3 {
  font-size: 24px;
  color: var(--primary-accent-green);
  margin-bottom: 15px;
  margin-top: 25px;
}

p {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--primary-dark);
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

header {
  background-color: var(--neutral-light);
  border-bottom: 1px solid #e8e8e8;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

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

nav a {
  color: var(--primary-dark);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
}

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

footer {
  background-color: var(--primary-dark);
  color: var(--neutral-light);
  padding: 80px 40px 40px;
  margin-top: 100px;
}

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

footer h3 {
  color: var(--primary-accent-yellow);
  font-size: 18px;
  margin-bottom: 20px;
}

footer p {
  color: rgba(245, 243, 240, 0.8);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

footer a {
  color: var(--primary-accent-yellow);
  font-size: 14px;
}

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

.footer-divider {
  height: 1px;
  background-color: rgba(245, 243, 240, 0.2);
  margin: 40px 0;
}

.footer-disclaimer {
  text-align: center;
  padding-top: 20px;
  font-size: 13px;
  color: rgba(245, 243, 240, 0.7);
  border-top: 1px solid rgba(245, 243, 240, 0.2);
}

.hero-section {
  height: 70vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(43, 62, 80, 0.35);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: var(--neutral-light);
}

.hero-content h1 {
  color: var(--neutral-light);
  font-size: 52px;
  margin-bottom: 20px;
}

.hero-content p {
  color: rgba(245, 243, 240, 0.95);
  font-size: 18px;
  margin-bottom: 30px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-full-width {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 100px calc(50vw - 50%);
}

.section-dark {
  background-color: var(--primary-dark);
  color: var(--neutral-light);
}

.section-dark h2,
.section-dark h3 {
  color: var(--primary-accent-yellow);
}

.section-dark p {
  color: rgba(245, 243, 240, 0.95);
}

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

.section-accent-green {
  background-color: var(--primary-accent-green);
  color: var(--neutral-light);
}

.section-accent-green h2 {
  color: var(--primary-accent-yellow);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

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

.card {
  background-color: var(--neutral-light);
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

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

.card h3 {
  color: var(--primary-accent-green);
  margin-bottom: 15px;
}

.card p {
  font-size: 15px;
  line-height: 1.8;
}

.text-block {
  background-color: var(--neutral-light);
  padding: 50px;
  border-left: 4px solid var(--primary-accent-green);
}

.text-block h3 {
  margin-top: 0;
}

.divider {
  width: 80px;
  height: 3px;
  background-color: var(--primary-accent-yellow);
  margin: 20px 0 30px 0;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--primary-accent-green);
  color: var(--neutral-light);
  text-decoration: none;
  border-radius: 3px;
  font-weight: 600;
  font-size: 15px;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-accent-yellow);
  color: var(--primary-dark);
}

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

.btn-secondary:hover {
  background-color: var(--primary-accent-green);
  color: var(--neutral-light);
}

.table-section {
  overflow-x: auto;
  margin: 30px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--neutral-light);
}

table th {
  background-color: var(--primary-accent-green);
  color: var(--neutral-light);
  padding: 16px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
}

table td {
  padding: 16px;
  border-bottom: 1px solid #e8e8e8;
}

table tr:hover {
  background-color: #fafaf8;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-dark);
  color: var(--neutral-light);
  padding: 20px 40px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

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

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

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 14px;
}

.cookie-accept {
  background-color: var(--primary-accent-green);
  color: var(--neutral-light);
}

.cookie-accept:hover {
  background-color: var(--primary-accent-yellow);
  color: var(--primary-dark);
}

.cookie-reject {
  background-color: transparent;
  border: 1px solid var(--neutral-light);
  color: var(--neutral-light);
}

.cookie-reject:hover {
  background-color: rgba(245, 243, 240, 0.1);
}

.cookie-learn {
  background-color: transparent;
  color: var(--primary-accent-yellow);
  text-decoration: underline;
}

.cookie-learn:hover {
  color: var(--primary-accent-green);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--primary-dark);
  font-size: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d0d0d0;
  border-radius: 3px;
  font-family: inherit;
  font-size: 15px;
  color: var(--primary-dark);
  transition: border-color 0.3s ease;
}

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

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

.form-disclaimer {
  background-color: var(--neutral-light);
  padding: 20px;
  border-radius: 3px;
  margin: 30px 0;
  font-size: 13px;
  line-height: 1.7;
  border-left: 3px solid var(--primary-accent-yellow);
}

.disclaimer-section {
  background-color: #fef9e7;
  padding: 40px;
  border-radius: 3px;
  border-left: 4px solid var(--primary-accent-yellow);
  margin: 40px 0;
}

.disclaimer-section h3 {
  color: var(--primary-dark);
  margin-top: 0;
}

.breadcrumb {
  margin: 30px 0;
  font-size: 13px;
}

.breadcrumb a {
  margin: 0 5px;
}

.breadcrumb span {
  color: var(--neutral-gray);
}

.list-style {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.list-style li {
  padding-left: 30px;
  margin-bottom: 12px;
  position: relative;
}

.list-style li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--primary-accent-green);
  font-weight: bold;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.stat-item {
  background-color: var(--neutral-light);
  padding: 30px 20px;
  text-align: center;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-item .stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-accent-green);
  margin-bottom: 10px;
}

.stat-item .stat-label {
  font-size: 13px;
  color: var(--neutral-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timeline {
  position: relative;
  margin: 40px 0;
  padding: 20px 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item:nth-child(even) .timeline-content {
  grid-column: 3;
  text-align: left;
}

.timeline-item:nth-child(odd) .timeline-content {
  grid-column: 1;
  text-align: right;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background-color: var(--primary-accent-green);
  border-radius: 50%;
  grid-column: 2;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--neutral-light);
  border: 3px solid var(--primary-dark);
}

.timeline-content {
  background-color: var(--neutral-light);
  padding: 20px;
  border-radius: 3px;
}

.glossary-rail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.glossary-item {
  background-color: var(--neutral-light);
  padding: 20px;
  border-radius: 3px;
  border-top: 3px solid var(--primary-accent-green);
}

.glossary-item strong {
  color: var(--primary-accent-green);
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.glossary-item p {
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 22px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .hero-section {
    height: 50vh;
  }

  nav ul {
    gap: 20px;
  }

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

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

  .glossary-rail {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-dot {
    display: none;
  }

  .timeline-item:nth-child(even) .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content {
    grid-column: 1;
    text-align: left;
  }

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

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}

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

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }

  p {
    font-size: 15px;
  }

  .header-content {
    padding: 0 20px;
    flex-wrap: wrap;
  }

  nav ul {
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    margin-top: 15px;
  }

  .hero-section {
    height: 40vh;
  }

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

  .hero-content p {
    font-size: 16px;
  }

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

  footer {
    padding: 60px 20px 30px;
  }

  .section {
    padding: 60px 0;
  }

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

  .card {
    padding: 25px;
  }

  .text-block {
    padding: 25px;
  }

  .cookie-banner.show {
    padding: 15px 20px;
  }

  .cookie-text {
    font-size: 13px;
    min-width: 100%;
  }

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

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