:root {
  --color-slate: #5C6672;
  --color-kelp: #4A7043;
  --color-linen: #F8F4E9;
  --color-copper: #B87333;
  --color-dark: #2a2a2a;
  --color-light: #f5f5f5;
}

html {
  scroll-behavior: smooth;
}

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

h1 {
  font-weight: 800;
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}

h2 {
  font-weight: 600;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}

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

p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

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

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

header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  border-bottom: 1px solid #e0e0e0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-slate);
  text-decoration: none;
  cursor: pointer;
}

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

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--color-slate);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--color-kelp);
  text-decoration: none;
}

main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

footer {
  background-color: var(--color-slate);
  color: white;
  padding: 3rem 1rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1220px;
  margin: 0 auto;
}

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

.footer-section h4 {
  color: var(--color-copper);
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-section a {
  display: block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--color-copper);
  text-decoration: none;
}

.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-wide {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 3rem 1rem;
}

.section-bg-primary {
  background-color: var(--color-linen);
}

.section-bg-secondary {
  background-color: white;
}

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

.hero img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 1rem;
}

.hero h1 {
  color: white;
  margin-bottom: 1rem;
}

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

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

.card {
  background-color: white;
  border: 1px solid #e0e0e0;
  padding: 1.5rem;
  transition: all 0.3s ease;
  border-radius: 4px;
}

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

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: 2px;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.card p {
  margin-bottom: 1rem;
  color: #666;
}

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

.cta-button:hover {
  background-color: var(--color-copper);
  text-decoration: none;
  transform: translateY(-2px);
}

.disclaimer-box {
  background-color: var(--color-linen);
  border-left: 4px solid var(--color-copper);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 2px;
}

.disclaimer-box strong {
  color: var(--color-slate);
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
}

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

.faq-question {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-kelp);
  margin-bottom: 0.8rem;
}

.faq-answer {
  color: #666;
  line-height: 1.75;
}

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

.two-column img {
  width: 100%;
  border-radius: 2px;
  max-height: 400px;
  object-fit: cover;
}

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

  h2 {
    font-size: 1.75rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .nav-links a {
    font-size: 0.85rem;
  }

  .hero {
    height: 400px;
  }

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

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

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

.blog-card {
  background-color: white;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.blog-card p {
  color: #666;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

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

.consent-text {
  flex: 1;
  min-width: 250px;
  font-size: 0.95rem;
  line-height: 1.5;
}

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

.consent-btn {
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.consent-btn-accept {
  background-color: var(--color-kelp);
  color: white;
}

.consent-btn-accept:hover {
  background-color: var(--color-copper);
}

.consent-btn-reject {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

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

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

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

.accent-green {
  color: var(--color-kelp);
}

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

.spacing-top {
  margin-top: 2rem;
}

.spacing-bottom {
  margin-bottom: 2rem;
}
