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

html,
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

body {
  background-color: white;
}

a {
  color: #2d7a3a;
  text-decoration: none;
}

a:hover {
  color: #1a472a;
  text-decoration: none;
}

.navbar-light .navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  margin: 0 10px;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #2d7a3a;
}

.form-control {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 10px 12px;
}

.form-control:focus {
  border-color: #2d7a3a;
  box-shadow: 0 0 0 0.2rem rgba(45, 122, 58, 0.25);
}

.btn {
  border-radius: 4px;
  font-weight: 600;
  padding: 10px 24px;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 122, 58, 0.3);
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(45, 122, 58, 0.25);
}

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

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15) !important;
}

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

.hero-section h1 {
  color: #1a472a;
}

.footer {
  background-color: #f5f5f5;
  border-top: 1px solid #e0e0e0;
}

.footer a {
  color: #2d7a3a;
}

.footer a:hover {
  color: #1a472a;
}

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

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

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

.cookie-banner-text {
  flex: 1;
  min-width: 250px;
}

.cookie-banner-buttons {
  display: flex;
  gap: 10px;
}

.cookie-banner-buttons button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: #2d7a3a;
  color: white;
}

.cookie-accept:hover {
  background-color: #236029;
}

.cookie-reject {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.cookie-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-banner-link {
  color: #4da85a;
  text-decoration: underline;
}

.cookie-banner-link:hover {
  color: #5fb66a;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 40px 0;
  }

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

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

  .display-5 {
    font-size: 1.5rem;
  }

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

  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-banner-buttons button {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.25rem !important;
  }

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

  .lead {
    font-size: 1rem;
  }

  .card {
    margin-bottom: 20px;
  }

  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .py-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .mb-4 {
    margin-bottom: 1rem !important;
  }
}
