* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1A2E40;
  --accent-green: #388E3C;
  --accent-beige: #D7CCC8;
  --white: #F0F0F0;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #F5F5F5;
  --border: #DDDDDD;
  --shadow: 0 2px 8px rgba(26, 46, 64, 0.08);
  --shadow-lg: 0 8px 16px rgba(26, 46, 64, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #FFFFFF;
}

h1 {
  font-family: 'Lora', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

a {
  color: var(--accent-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary);
  text-decoration: underline;
}

strong {
  font-weight: 700;
  color: var(--primary);
}

header {
  background-color: var(--primary);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

header .header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

header .logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

header nav a {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

header nav a:hover,
header nav a.active {
  color: var(--accent-green);
}

footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

footer .footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

footer h3 {
  color: var(--accent-green);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 1rem;
}

footer p,
footer a {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.8;
}

footer a:hover {
  color: var(--accent-green);
}

footer .divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 2rem 0;
}

footer .footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 4rem 0;
}

.hero {
  background: linear-gradient(135deg, rgba(26, 46, 64, 0.7), rgba(26, 46, 64, 0.5)), 
              url('images/hero.jpg') center/cover no-repeat;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  margin-bottom: 0;
  padding: 6rem 2rem;
}

.hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  max-width: 900px;
}

.hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--accent-green);
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.button:hover {
  background-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.button-secondary {
  background-color: transparent;
  border: 2px solid var(--accent-green);
  color: var(--accent-green);
}

.button-secondary:hover {
  background-color: var(--accent-green);
  color: #FFFFFF;
}

.grid {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--accent-green);
}

.card h3 {
  margin-top: 0;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-column-reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.two-column-reverse > * {
  direction: ltr;
}

.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 4rem 2rem;
}

.full-width-bg {
  background-color: var(--bg-light);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  background: linear-gradient(135deg, var(--primary), rgba(26, 46, 64, 0.8));
  padding: 2rem;
  border-radius: 8px;
  color: var(--white);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-green);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.5rem;
}

.quote {
  border-left: 4px solid var(--accent-green);
  padding-left: 2rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-light);
  font-size: 1.1rem;
}

.disclaimer {
  background: linear-gradient(135deg, rgba(56, 142, 60, 0.05), rgba(215, 204, 200, 0.05));
  border: 1px solid var(--accent-green);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
  font-size: 0.95rem;
}

.disclaimer strong {
  color: var(--primary);
}

.list-styled {
  list-style: none;
  padding: 0;
}

.list-styled li {
  padding-left: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

.list-styled li:before {
  content: '▸';
  color: var(--accent-green);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -2px;
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  background-color: var(--accent-green);
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  margin-top: 8px;
  position: relative;
  left: 23px;
}

.timeline-item:not(:last-child) .timeline-dot::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 80px;
  background-color: var(--border);
  left: -8px;
  top: 18px;
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-header {
  background-color: var(--bg-light);
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--primary);
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: rgba(56, 142, 60, 0.05);
}

.accordion-header::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent-green);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
  transform: rotate(45deg);
}

.accordion-content {
  display: none;
  padding: 1.5rem;
  background-color: #FFFFFF;
}

.accordion-item.active .accordion-content {
  display: block;
}

.glossary {
  background: var(--bg-light);
  border-left: 4px solid var(--accent-green);
  padding: 2rem;
  border-radius: 4px;
}

.glossary-item {
  margin-bottom: 1.5rem;
}

.glossary-term {
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
}

.glossary-definition {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.comparison-table th {
  background-color: var(--primary);
  color: var(--white);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:nth-child(even) {
  background-color: rgba(56, 142, 60, 0.02);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(56, 142, 60, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  color: var(--white);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: var(--accent-green);
  color: #FFFFFF;
}

.cookie-accept:hover {
  background-color: #2E7D32;
}

.cookie-reject {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.cookie-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-learn {
  background-color: transparent;
  color: var(--accent-green);
  border: 1px solid var(--accent-green);
  text-decoration: none;
  display: inline-block;
}

.cookie-learn:hover {
  background-color: rgba(56, 142, 60, 0.1);
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
  background-color: var(--bg-light);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  header nav ul {
    gap: 1rem;
    font-size: 0.85rem;
  }

  .hero {
    min-height: 400px;
    padding: 3rem 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .two-column,
  .two-column-reverse {
    grid-template-columns: 1fr;
  }

  .two-column-reverse {
    direction: ltr;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

  section {
    padding: 2rem 0;
  }

  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  footer .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
