:root {
  --primary-green: #28a745;
  --dark-green: #1e7e34;
  --light-green: #d4edda;
  --gray-dark: #343a40;
  --gray-medium: #6c757d;
  --gray-light: #f8f9fa;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
}

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  padding: 80px 0;
}

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

.custom-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 10px;
}

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

.benefit-box {
  background: #fff;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 3rem;
}

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

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.page-header {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
}

.principle-item {
  transition: background-color 0.3s ease;
}

.principle-item:hover {
  background-color: #e9ecef !important;
}

.policy-section h2 {
  color: var(--dark-green);
  border-bottom: 2px solid var(--primary-green);
  padding-bottom: 10px;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
}

.footer {
  margin-top: 50px;
}

.footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-green) !important;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
  padding: 20px 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

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

.success-icon {
  display: inline-block;
  animation: checkmark 0.5s ease-in-out;
}

@keyframes checkmark {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

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

  .hero-overlay {
    padding: 50px 0;
  }

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

  .lead {
    font-size: 1rem;
  }
}

.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);
}

.text-success {
  color: var(--primary-green) !important;
}

.bg-success {
  background-color: var(--primary-green) !important;
}

.border-success {
  border-color: var(--primary-green) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
