@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Merriweather:wght@300;400;700&display=swap');

:root {
  --color-primary: #22422C;
  --color-secondary-light: #F8F8F8;
  --color-secondary-medium: #EAEAEA;
  --color-accent-terracotta: #C65C4F;
  --color-accent-gold: #D4A95B;
  --color-accent-grey: #AAB8BA;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Merriweather', serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: var(--color-secondary-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  color: var(--color-accent-terracotta);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.75rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.0625rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease-in-out;
}

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

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color-primary);
  padding: 1.25rem 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  cursor: pointer;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-menu li a {
  color: white;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  position: relative;
}

.nav-menu li a:hover {
  color: var(--color-accent-gold);
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 70px;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 2rem;
}

.hero-content h1 {
  color: white;
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.section {
  padding: 100px 0;
}

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

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

.section-accent {
  background-color: var(--color-secondary-medium);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.two-column-layout {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.two-column-layout.reverse {
  flex-direction: row-reverse;
}

.column {
  flex: 1;
}

.column img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease-in-out;
}

.card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

.card h3 {
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.card p {
  color: #666;
  font-size: 1rem;
}

.glossary-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.glossary-item {
  background: white;
  padding: 1.5rem;
  border-left: 4px solid var(--color-accent-gold);
  border-radius: 4px;
}

.glossary-item h4 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-accent-terracotta);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -3.5rem;
  top: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--color-accent-terracotta);
  border: 3px solid white;
}

.timeline-item h4 {
  font-family: var(--font-heading);
  color: var(--color-accent-terracotta);
  margin-bottom: 0.5rem;
}

.stat-strip {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, #2d5638 100%);
}

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

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent-gold);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-item .stat-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--color-accent-terracotta);
  color: white;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid var(--color-accent-terracotta);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.cta-button:hover {
  background-color: transparent;
  color: var(--color-accent-terracotta);
}

.cta-button-outline {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: transparent;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid var(--color-primary);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.cta-button-outline:hover {
  background-color: var(--color-primary);
  color: white;
}

.process-flow {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  position: relative;
}

.process-step::after {
  content: '→';
  position: absolute;
  right: -2rem;
  top: 30%;
  font-size: 2rem;
  color: var(--color-accent-gold);
}

.process-step:last-child::after {
  display: none;
}

.process-step .step-number {
  width: 60px;
  height: 60px;
  background: var(--color-accent-terracotta);
  color: white;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.process-step h4 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.comparison-table th {
  background: var(--color-primary);
  color: white;
  padding: 1.25rem;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
}

.comparison-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-secondary-medium);
}

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

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

.accordion {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.accordion-header {
  padding: 1.5rem;
  background: var(--color-secondary-medium);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: var(--color-accent-grey);
}

.accordion-header h4 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin: 0;
}

.accordion-icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

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

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

.accordion-content-inner {
  padding: 1.5rem;
}

.blockquote {
  border-left: 5px solid var(--color-accent-terracotta);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #555;
}

.highlight-box {
  background: var(--color-accent-gold);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.highlight-box h3 {
  color: white;
  margin-bottom: 1rem;
}

.highlight-box p {
  color: white;
}

.icon-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.icon-list-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.icon-list-item .icon {
  width: 50px;
  height: 50px;
  background: var(--color-accent-terracotta);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.icon-list-item .content h4 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.footer {
  background-color: var(--color-primary);
  color: white;
  padding: 4rem 0 2rem;
}

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

.footer-section h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.75rem;
  display: block;
}

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

.footer-links {
  list-style: none;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primary);
  color: white;
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

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

.cookie-button {
  padding: 0.75rem 1.5rem;
  border: 2px solid white;
  background: transparent;
  color: white;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-button:hover {
  background: white;
  color: var(--color-primary);
}

.cookie-button.accept {
  background: var(--color-accent-terracotta);
  border-color: var(--color-accent-terracotta);
}

.cookie-button.accept:hover {
  background: white;
  color: var(--color-accent-terracotta);
}

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

ul li, ol li {
  margin-bottom: 0.5rem;
}

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

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

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

  .two-column-layout {
    flex-direction: column;
    gap: 2rem;
  }

  .two-column-layout.reverse {
    flex-direction: column;
  }

  .stat-strip {
    flex-direction: column;
    gap: 2rem;
  }

  .process-flow {
    flex-direction: column;
  }

  .process-step::after {
    display: none;
  }
}

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

  .header-content {
    padding: 0 1.5rem;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background-color: var(--color-primary);
    width: 100%;
    padding: 2rem;
    gap: 1.5rem;
    transition: left 0.3s ease;
  }

  .nav-menu.active {
    left: 0;
  }

  .mobile-menu-toggle {
    display: block;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

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

  .section {
    padding: 60px 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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