:root {
  --primary-green: #5a8f7b;
  --primary-green-dark: #4a7563;
  --light-green: #e8f4f0;
  --neutral-light: #f8f9fa;
  --neutral-gray: #6c757d;
  --neutral-dark: #343a40;
  --white: #ffffff;
  --border-color: #dee2e6;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--neutral-dark);
  line-height: 1.6;
  background-color: var(--white);
}

.site-header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-green);
}

.navbar-brand:hover {
  color: var(--primary-green-dark);
}

.nav-link {
  color: var(--neutral-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-green);
}

.hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--light-green) 0%, var(--neutral-light) 100%);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 1rem;
}

.hero-content .lead {
  font-size: 1.25rem;
  color: var(--neutral-gray);
}

.page-hero {
  background: linear-gradient(135deg, var(--light-green) 0%, var(--neutral-light) 100%);
  padding: 4rem 0 3rem;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 1rem;
}

.content-section {
  padding: 4rem 0;
}

.content-section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 1.5rem;
}

.content-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 1rem;
}

.content-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--neutral-gray);
  margin-bottom: 1.5rem;
}

.content-section.bg-light {
  background-color: var(--neutral-light);
}

.image-block {
  margin: 2rem 0;
  border-radius: 8px;
  overflow: hidden;
}

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

.topic-card {
  text-align: center;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.topic-card img {
  margin-bottom: 1.5rem;
  border-radius: 8px;
}

.topic-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 0.5rem;
}

.topic-card p {
  font-size: 1rem;
  color: var(--neutral-gray);
}

.faq-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: var(--white);
  border-left: 4px solid var(--primary-green);
  border-radius: 4px;
}

.faq-item h3 {
  font-size: 1.2rem;
  color: var(--neutral-dark);
  margin-bottom: 0.5rem;
}

.faq-item p {
  font-size: 1rem;
  color: var(--neutral-gray);
  margin-bottom: 0;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--white);
}

.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--white);
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-green-dark);
  border-color: var(--primary-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.cta-section .btn-primary {
  background-color: var(--white);
  color: var(--primary-green);
}

.cta-section .btn-primary:hover {
  background-color: var(--neutral-light);
  color: var(--primary-green-dark);
}

.contact-info {
  background-color: var(--light-green);
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.contact-info h3 {
  font-size: 1.3rem;
  color: var(--neutral-dark);
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1rem;
  color: var(--neutral-gray);
  margin-bottom: 1rem;
}

.contact-form-wrapper {
  background-color: var(--light-green);
  padding: 2rem;
  border-radius: 8px;
}

.form-group label {
  font-weight: 500;
  color: var(--neutral-dark);
}

.form-control {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 0.75rem;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(90, 143, 123, 0.25);
}

.form-check-label {
  font-size: 0.9rem;
}

.form-check-label a {
  color: var(--primary-green);
  text-decoration: underline;
}

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--light-green) 0%, var(--neutral-light) 100%);
}

.thank-you-content {
  padding: 3rem;
}

.thank-you-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.policy-content li {
  color: var(--neutral-gray);
  margin-bottom: 0.5rem;
}

.site-footer {
  background-color: var(--neutral-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.site-footer h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.site-footer p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--neutral-dark);
  color: var(--white);
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.15);
  display: none;
}

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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.cookie-content a {
  color: var(--primary-green);
  text-decoration: underline;
}

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

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

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

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

  .hero-content .lead {
    font-size: 1.1rem;
  }

  .content-section h2 {
    font-size: 1.75rem;
  }

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

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

@media (max-width: 576px) {
  .hero-section {
    min-height: 400px;
  }

  .content-section {
    padding: 3rem 0;
  }

  .btn-lg {
    padding: 0.5rem 1.5rem;
    font-size: 0.95rem;
  }
}
