:root {
  --primary: #1A344A;
  --accent: #F7C500;
  --secondary: #94A6B8;
  --light: #E0E2E4;
  --bg-light: #F5F5F5;
  --text-dark: #333333;
  --white: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Merriweather', serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', sans-serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 3rem;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 2rem;
}

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

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

a:hover {
  color: var(--accent);
  text-decoration: underline;
}

header {
  background-color: var(--white);
  border-bottom: 1px solid var(--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: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  font-family: 'Roboto Slab', sans-serif;
}

.logo:hover {
  color: var(--accent);
}

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

nav a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  font-family: 'Roboto Slab', sans-serif;
  font-size: 0.95rem;
}

nav a.active {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

nav a:hover {
  color: var(--accent);
  text-decoration: none;
}

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

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

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

section:last-child {
  border-bottom: none;
}

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

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}

.col-6 {
  grid-column: span 6;
}

.col-4 {
  grid-column: span 4;
}

.col-3 {
  grid-column: span 3;
}

.col-8 {
  grid-column: span 8;
}

.col-12 {
  grid-column: span 12;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-bottom: 3rem;
}

.hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(26, 52, 74, 0.3), rgba(26, 52, 74, 0.8));
  padding: 3rem 2rem;
  color: var(--white);
  text-align: center;
}

.hero-overlay h1 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-overlay p {
  color: var(--light);
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-column-alt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  flex-direction: row-reverse;
}

.two-column-alt.reverse {
  direction: rtl;
}

.two-column-alt.reverse > * {
  direction: ltr;
}

.image-block {
  position: relative;
}

.image-block img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.image-caption {
  font-size: 0.9rem;
  color: var(--secondary);
  margin-top: 0.75rem;
  font-style: italic;
}

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

.section-divider {
  width: 100%;
  height: 2px;
  background-color: var(--light);
  margin: 3rem 0;
}

.accent-line {
  width: 60px;
  height: 3px;
  background-color: var(--accent);
  margin-bottom: 1.5rem;
}

.button {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  padding: 0.875rem 1.75rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
  cursor: pointer;
  font-family: 'Roboto Slab', sans-serif;
}

.button:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
  text-decoration: none;
}

.button.secondary {
  background-color: transparent;
  color: var(--primary);
}

.button.secondary:hover {
  background-color: var(--accent);
  color: var(--white);
}

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

.card {
  background-color: var(--white);
  border: 1px solid var(--light);
  padding: 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.card h3 {
  margin-top: 0;
  color: var(--primary);
}

.glossary-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--light);
}

.glossary-item:last-child {
  border-bottom: none;
}

.glossary-term {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1rem;
}

.glossary-definition {
  color: var(--text-dark);
  line-height: 1.8;
}

.stat-item {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Roboto Slab', sans-serif;
}

.stat-label {
  color: var(--secondary);
  font-size: 1rem;
  margin-top: 0.5rem;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 4px;
  margin: 2rem 0;
}

.key-takeaway {
  background-color: var(--light);
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.key-takeaway h4 {
  color: var(--primary);
  margin-top: 0;
  font-size: 1.1rem;
}

.key-takeaway p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 3rem 2rem;
  margin-top: 3rem;
}

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

.footer-section h4 {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

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

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

.footer-section a {
  color: var(--light);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.footer-bottom p {
  margin-bottom: 0.5rem;
}

.disclaimer-block {
  background-color: var(--bg-light);
  border-left: 4px solid var(--secondary);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-block h4 {
  color: var(--primary);
  margin-top: 0;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.disclaimer-block p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--light);
  border-radius: 4px;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

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

.form-submit {
  text-align: center;
}

.thank-you-message {
  text-align: center;
  padding: 4rem 2rem;
}

.thank-you-message h2 {
  margin-top: 0;
  font-size: 2rem;
}

.thank-you-message p {
  font-size: 1.1rem;
  color: var(--secondary);
}

.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-left: 2px solid var(--light);
  margin-left: 50px;
  position: relative;
}

.timeline-item::before {
  content: '';
  width: 12px;
  height: 12px;
  background-color: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: -7px;
  top: 2rem;
}

.timeline-label {
  font-weight: 600;
  color: var(--primary);
  text-align: right;
}

.timeline-content h4 {
  margin-top: 0;
}

.comparison-matrix {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.comparison-matrix th {
  background-color: var(--primary);
  color: var(--white);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  border: 1px solid var(--light);
}

.comparison-matrix td {
  padding: 1rem;
  border: 1px solid var(--light);
}

.comparison-matrix tr:nth-child(even) {
  background-color: var(--bg-light);
}

.comparison-matrix tr:hover {
  background-color: rgba(247, 197, 0, 0.1);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  color: var(--white);
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-text a {
  color: var(--accent);
}

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

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Roboto Slab', sans-serif;
  font-size: 0.9rem;
}

.cookie-btn-accept {
  background-color: var(--accent);
  color: var(--primary);
}

.cookie-btn-accept:hover {
  background-color: #F5B700;
  transform: translateY(-2px);
}

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

.cookie-btn-decline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  nav ul {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .two-column,
  .two-column-alt {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .glossary-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .hero-overlay h1 {
    font-size: 1.5rem;
  }

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

  .cookie-buttons {
    width: 100%;
    justify-content: flex-end;
  }

  section {
    padding: 40px 0;
  }

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

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

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

  h2 {
    font-size: 1.25rem;
  }

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

  nav ul {
    gap: 0.75rem;
  }

  main {
    padding: 0 1rem;
  }

  section {
    padding: 30px 0;
  }

  .grid-12 {
    gap: 1rem;
  }

  .col-6, .col-4, .col-3, .col-8, .col-12 {
    grid-column: span 12;
  }

  .cookie-banner {
    padding: 1rem;
    font-size: 0.85rem;
  }

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

  .timeline-item {
    grid-template-columns: 1fr;
    margin-left: 0;
    border-left: none;
  }

  .timeline-item::before {
    display: none;
  }
}

@font-face {
  font-family: 'Roboto Slab';
  src: url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;700&display=swap');
}

@font-face {
  font-family: 'Merriweather';
  src: url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&display=swap');
}
