:root {
  --primary-bg: #E0E7E9;
  --accent-1: #8FA9B1;
  --accent-2: #A3C9A8;
  --accent-3: #BBC8CC;
  --white: #FFFFFF;
  --dark: #1A1A1A;
  --light-gray: #F5F7F8;
}

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

html, body {
  font-family: 'Georgia', serif;
  color: var(--dark);
  background-color: var(--white);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

h1 {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
}

h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 2rem;
}

h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 1.5rem;
}

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

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

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

header {
  background-color: var(--white);
  border-bottom: 1px solid var(--primary-bg);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--dark);
  font-family: 'Arial', sans-serif;
}

.logo a {
  color: var(--dark);
  text-decoration: none;
}

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

nav a {
  font-size: 0.95rem;
  color: var(--dark);
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--accent-1);
}

footer {
  background-color: var(--light-gray);
  border-top: 1px solid var(--primary-bg);
  padding: 3rem 2rem;
  margin-top: 4rem;
}

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

.footer-section h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
  color: var(--accent-1);
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid var(--primary-bg);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--accent-1);
}

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

.section {
  padding: 4rem 2rem;
  margin: 2rem 0;
}

.section-hero {
  background-color: var(--primary-bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 2rem;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 4px;
}

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

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

.section-two-col-reverse > :first-child {
  order: 2;
}

.section-two-col-reverse > :last-child {
  order: 1;
}

.section-image {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 4px;
}

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

.card {
  background-color: var(--white);
  border: 1px solid var(--primary-bg);
  padding: 2rem;
  border-radius: 4px;
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 4px;
}

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

.card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.info-panel {
  background-color: var(--light-gray);
  border-left: 4px solid var(--accent-1);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 2px;
}

.info-panel h3 {
  color: var(--accent-1);
}

.table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
}

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

th {
  background-color: var(--accent-1);
  color: var(--white);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-family: 'Arial', sans-serif;
}

td {
  padding: 1rem;
  border-bottom: 1px solid var(--primary-bg);
}

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

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

.timeline-item {
  padding-left: 3rem;
  margin-bottom: 2rem;
  position: relative;
}

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

.timeline-item::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 12px;
  width: 2px;
  height: calc(100% + 10px);
  background-color: var(--primary-bg);
}

.timeline-item:last-child::after {
  display: none;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent-1);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: 'Arial', sans-serif;
}

.cta-button:hover {
  background-color: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

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

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

.glossary-list {
  margin: 2rem 0;
}

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

.glossary-item dt {
  font-weight: 600;
  color: var(--accent-1);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.glossary-item dd {
  margin-left: 0;
  color: var(--dark);
  line-height: 1.7;
}

.faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid var(--primary-bg);
  padding: 1.5rem;
  border-radius: 4px;
}

.faq-question {
  font-weight: 600;
  color: var(--accent-1);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  margin-top: 1rem;
  display: none;
  line-height: 1.8;
}

.faq-answer.show {
  display: block;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark);
  font-family: 'Arial', sans-serif;
}

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

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-1);
  box-shadow: 0 0 0 3px rgba(143, 169, 177, 0.1);
}

.form-disclaimer {
  background-color: var(--light-gray);
  border-left: 4px solid var(--accent-2);
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 2px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark);
  color: var(--white);
  padding: 1.5rem 2rem;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  z-index: 1000;
  flex-wrap: wrap;
}

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

.cookie-message {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.5;
  min-width: 200px;
}

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

.cookie-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Arial', sans-serif;
}

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

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

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

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

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

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

.list-section {
  margin: 2rem 0;
}

.list-section ul {
  list-style-position: inside;
  margin-left: 1rem;
}

.list-section li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.disclaimer-box {
  background-color: var(--light-gray);
  border: 2px solid var(--accent-1);
  padding: 2rem;
  border-radius: 4px;
  margin: 2rem 0;
}

.disclaimer-box h3 {
  color: var(--accent-1);
}

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

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .section-hero {
    grid-template-columns: 1fr;
    padding: 3rem 1rem;
  }

  .section-two-col,
  .section-two-col-reverse {
    grid-template-columns: 1fr;
  }

  .section-two-col-reverse > :first-child,
  .section-two-col-reverse > :last-child {
    order: unset;
  }

  nav ul {
    gap: 1rem;
    flex-direction: column;
  }

  nav {
    width: 100%;
  }

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

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

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

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

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