:root {
  --primary-green: #2C4A3A;
  --accent-terracotta: #CC8866;
  --accent-sky: #88AACC;
  --accent-stone: #A9A39A;
  --bg-light: #EBEBEB;
  --text-dark: #333333;
  --text-light: #666666;
  --white: #FFFFFF;
}

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

html, body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
}

body {
  background-color: var(--bg-light);
}

main {
  min-height: calc(100vh - 120px);
}

h1 {
  font-family: 'Arial Black', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--primary-green);
  letter-spacing: -1px;
}

h2 {
  font-family: 'Arial Black', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--primary-green);
  margin-top: 2rem;
}

h3 {
  font-family: 'Segoe UI', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  line-height: 1.8;
}

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

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

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

header {
  background-color: var(--white);
  border-bottom: 2px solid var(--primary-green);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.logo {
  font-family: 'Arial Black', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

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

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

nav a {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

nav a.active {
  color: var(--primary-green);
  border-bottom-color: var(--accent-terracotta);
}

nav a:hover {
  color: var(--accent-terracotta);
  border-bottom-color: var(--accent-terracotta);
}

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

.footer-wrapper {
  max-width: 1280px;
  margin: 0 auto;
}

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

.footer-section h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

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

.footer-disclaimer {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  border-radius: 4px;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
}

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

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

section {
  padding: 4rem 2rem;
}

.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 74, 58, 0.6);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-image: url('images/image1.jpg');
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

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

.hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.3rem;
  margin-bottom: 0;
}

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

.section-title h2 {
  margin-top: 0;
}

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

.two-column img {
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  height: auto;
  max-height: 500px;
  object-fit: cover;
}

.two-column.reverse {
  grid-template-columns: 1fr 1fr;
}

.two-column.reverse .image {
  order: 2;
}

.two-column.reverse .text {
  order: 1;
}

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

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

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

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

.card h3 {
  margin-top: 0;
}

.feature-list {
  list-style: none;
  margin: 2rem 0;
}

.feature-list li {
  padding: 1rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-dark);
  line-height: 1.8;
}

.feature-list li:before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent-terracotta);
  font-size: 1.5rem;
}

.highlight-box {
  background-color: var(--bg-light);
  border-left: 4px solid var(--accent-terracotta);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.highlight-box.sky-accent {
  border-left-color: var(--accent-sky);
}

.highlight-box.stone-accent {
  border-left-color: var(--accent-stone);
}

.disclaimer-box {
  background-color: var(--white);
  border: 2px solid var(--accent-terracotta);
  padding: 2rem;
  border-radius: 4px;
  margin: 2rem 0;
  font-style: italic;
}

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

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

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

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

form {
  max-width: 600px;
  margin: 2rem auto;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--bg-light);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-terracotta);
  box-shadow: 0 0 0 3px rgba(204, 136, 102, 0.1);
}

textarea {
  resize: vertical;
  min-height: 200px;
}

.breadcrumb {
  padding: 1rem 2rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--accent-terracotta);
}

table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

th {
  background-color: var(--primary-green);
  color: var(--white);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

td {
  padding: 1rem;
  border-bottom: 1px solid var(--bg-light);
  color: var(--text-dark);
}

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

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}

.timeline-year {
  font-weight: 700;
  color: var(--accent-terracotta);
  font-size: 1.2rem;
}

.timeline-content {
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--bg-light);
}

.timeline-content:last-child {
  border-bottom: none;
}

.glossary-term {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--bg-light);
}

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

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

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.comparison-item {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--accent-terracotta);
}

.comparison-item h3 {
  margin-top: 0;
  color: var(--primary-green);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
  padding: 2rem;
  background-color: var(--primary-green);
  border-radius: 4px;
  color: var(--white);
  text-align: center;
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-terracotta);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.95;
}

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

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

.cookie-message {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

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

.cookie-accept:hover {
  opacity: 0.9;
}

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

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

.cookie-learn {
  background-color: transparent;
  color: var(--white);
  text-decoration: underline;
  padding: 0;
  border: none;
}

.cookie-learn:hover {
  opacity: 0.8;
}

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

  h2 {
    font-size: 1.8rem;
  }

  .hero {
    height: 400px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .two-column.reverse {
    grid-template-columns: 1fr;
  }

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

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

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

  .header-wrapper {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    text-align: center;
  }

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

  .cookie-buttons {
    flex-direction: column;
  }

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

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

  h2 {
    font-size: 1.5rem;
  }

  section {
    padding: 2rem 1rem;
  }

  .container {
    padding: 0 1rem;
  }

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

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