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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #2c3e50;
  line-height: 1.6;
  padding-top: 76px;
}

.navbar {
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  color: #2d7a4f;
}

.navbar-brand:hover {
  color: #235f3d;
}

.nav-link {
  color: #2c3e50;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #2d7a4f;
}

.hero-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
}

.page-header {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #2d7a4f 0%, #1e5a37 100%);
  color: white;
  text-align: center;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.btn-primary {
  background-color: #2d7a4f;
  border-color: #2d7a4f;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #235f3d;
  border-color: #235f3d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 122, 79, 0.3);
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-img-top {
  height: 220px;
  object-fit: cover;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2d7a4f 0%, #3a9d63 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto;
}

.cta-section {
  background: linear-gradient(135deg, #2d7a4f 0%, #1e5a37 100%);
  color: white;
}

.cta-section .section-title,
.cta-section .lead {
  color: white;
}

.footer {
  margin-top: 80px;
}

.footer a {
  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c3e50;
  color: white;
  padding: 20px 0;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

.cookie-consent a {
  color: white;
  text-decoration: underline;
}

.cookie-consent .btn-light {
  background-color: #2d7a4f;
  border-color: #2d7a4f;
  color: white;
}

.cookie-consent .btn-light:hover {
  background-color: #235f3d;
  border-color: #235f3d;
}

.cookie-consent .btn-outline-light {
  border-color: white;
  color: white;
}

.cookie-consent .btn-outline-light:hover {
  background-color: white;
  color: #2c3e50;
}

.thank-you-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-icon {
  display: flex;
  justify-content: center;
}

.legal-content {
  font-size: 0.95rem;
}

.legal-content h2 {
  color: #2c3e50;
}

.legal-content h3 {
  color: #34495e;
}

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

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

@media (max-width: 768px) {
  body {
    padding-top: 66px;
  }

  .hero-section {
    padding: 60px 0;
  }

  .page-header {
    padding: 100px 0 40px;
  }

  .section {
    padding: 60px 0;
  }

  .navbar-brand {
    font-size: 1.25rem;
  }

  .display-4 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1rem;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .cookie-consent .btn {
    width: 100%;
    margin-bottom: 10px;
  }
}

@media (min-width: 992px) {
  .card-img-top {
    height: 250px;
  }
}
