* {
  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: #333;
  background-color: #fff;
}

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

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

.hero-section {
  position: relative;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(45, 95, 63, 0.8) 0%, rgba(76, 153, 102, 0.7) 100%);
  display: flex;
  align-items: center;
}

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

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

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

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

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

.info-box {
  background: #f8f9fa;
  border-left: 4px solid #28a745;
}

.bg-success-gradient {
  background: linear-gradient(135deg, #2d5f3f 0%, #4c9966 100%);
}

.btn-success {
  background-color: #28a745;
  border-color: #28a745;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-success:hover {
  background-color: #218838;
  border-color: #1e7e34;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

.footer {
  margin-top: 4rem;
}

.footer a:hover {
  color: #28a745;
  text-decoration: none;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2d5f3f;
  color: #fff;
  padding: 1.5rem 0;
  z-index: 9999;
  display: none;
}

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

.cookie-banner a {
  color: #fff;
  text-decoration: underline;
}

.thank-you-box {
  animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-icon {
  display: inline-block;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.page-header {
  padding: 3rem 0;
}

.policy-content h2 {
  color: #2d5f3f;
  margin-top: 2rem;
}

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

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

  .hero-image img {
    height: 300px;
  }

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

  .cookie-banner .row {
    text-align: center;
  }

  .cookie-banner .text-md-right {
    text-align: center;
    margin-top: 1rem;
  }
}

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

.rounded {
  border-radius: 0.5rem;
}

.text-success {
  color: #28a745;
}

.bg-white {
  background-color: #fff;
}

.text-muted {
  color: #6c757d;
}
