:root {
  --primary-green: #4a9b7f;
  --light-green: #6bb89d;
  --dark-green: #2d7a5e;
  --neutral-white: #ffffff;
  --neutral-light: #f8f9fa;
  --neutral-gray: #6c757d;
  --neutral-dark: #343a40;
  --neutral-black: #212529;
}

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

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

.main-header {
  background-color: var(--neutral-white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

.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 {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  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;
  filter: brightness(0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--neutral-white);
  padding: 4rem 0;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .lead {
  font-size: 1.25rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-hero {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
  color: var(--neutral-white);
  padding: 4rem 0 3rem;
  margin-bottom: 0;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.content-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

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

.content-section h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 0.75rem;
}

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

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

.info-card {
  padding: 1.5rem;
  height: 100%;
}

.info-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.info-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--neutral-gray);
}

.info-list {
  list-style: none;
  padding-left: 0;
}

.info-list li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  font-size: 1.1rem;
  line-height: 1.6;
}

.info-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: 700;
  font-size: 1.2rem;
}

.disclaimer-box {
  background-color: var(--neutral-light);
  border-left: 4px solid var(--primary-green);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.disclaimer-box p {
  margin-bottom: 1rem;
}

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

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--neutral-light);
}

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

.faq-item h4 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
  color: var(--neutral-white);
  padding: 4rem 0;
  margin-top: 2rem;
}

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

.cta-section .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

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

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

.contact-info {
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 0.5rem;
}

.contact-form .form-control {
  border: 2px solid var(--neutral-light);
  border-radius: 8px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(74, 155, 127, 0.25);
}

.thank-you-section {
  padding: 6rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  background-color: var(--neutral-light);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.thank-you-content h1 {
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.legal-content {
  font-size: 1rem;
  line-height: 1.8;
}

.legal-content h2 {
  font-size: 1.75rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

.legal-content h3 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--dark-green);
}

.legal-content ul {
  margin-bottom: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content p {
  margin-bottom: 1rem;
}

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

.main-footer h5 {
  color: var(--neutral-white);
  font-weight: 700;
  margin-bottom: 1rem;
}

.main-footer p {
  color: var(--neutral-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

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

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

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

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

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

.cookie-content {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

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

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

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

.cookie-buttons .btn {
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
}

.btn-success {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

.btn-success:hover {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
}

.btn-secondary {
  background-color: var(--neutral-gray);
  border-color: var(--neutral-gray);
}

.btn-secondary:hover {
  background-color: var(--neutral-dark);
  border-color: var(--neutral-dark);
}

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

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

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

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

  .content-section h3 {
    font-size: 1.35rem;
  }

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

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

  .cookie-buttons .btn {
    flex: 1;
  }
}

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

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

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

.rounded {
  border-radius: 12px;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.pt-3 {
  padding-top: 1rem;
}

.border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
