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

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

html {
  scroll-behavior: smooth;
}

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

.navbar-brand:hover {
  color: #16a34a !important;
}

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

.nav-link:hover {
  color: #16a34a !important;
}

.btn-success {
  background-color: #16a34a;
  border-color: #16a34a;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-success:hover {
  background-color: #15803d;
  border-color: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(22, 163, 74, 0.2);
}

.text-success {
  color: #16a34a !important;
}

.bg-success {
  background-color: #16a34a !important;
}

.hero-section {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  border-bottom: 1px solid #e5e7eb;
}

.card {
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1) !important;
}

.form-control {
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 10px 12px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.custom-control-input:checked ~ .custom-control-label::before {
  background-color: #16a34a;
  border-color: #16a34a;
}

footer {
  background-color: #1f2937;
}

footer a {
  transition: color 0.3s ease;
}

footer a:hover {
  color: #16a34a !important;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f2937;
  color: white;
  padding: 20px 0;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

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

.cookie-banner a {
  color: white;
}

.border-secondary {
  border-color: #4b5563 !important;
}

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

.text-decoration-none {
  text-decoration: none;
}

.text-decoration-none:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .display-4 {
    font-size: 2.5rem;
  }

  .container {
    padding: 0 15px;
  }

  .hero-section {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .py-5 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .col-md-6 {
    margin-bottom: 20px;
  }

  .cookie-banner {
    padding: 15px 0;
  }

  .btn-sm {
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .display-4 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1rem;
  }

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

  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}
