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

html,
body {
  height: 100%;
}

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

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

a:hover {
  color: #218838;
  text-decoration: underline;
}

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.bg-success {
  background-color: #28a745 !important;
}

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

.border-success {
  border-color: #28a745 !important;
}

.btn-success {
  background-color: #28a745;
  border-color: #28a745;
  color: #fff;
}

.btn-success:hover {
  background-color: #218838;
  border-color: #218838;
}

.btn-outline-success {
  color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:hover {
  background-color: #28a745;
  border-color: #28a745;
  color: #fff;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(40, 167, 69, 0.15);
}

.card-title {
  color: #28a745;
}

.card-img-top {
  height: 250px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

header {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

main {
  flex: 1;
}

footer {
  background-color: #1a1a1a;
  margin-top: auto;
}

footer a {
  color: #ccc;
}

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

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-white-50:hover {
  color: #28a745 !important;
}

.form-control {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 16px;
}

.form-control:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.form-check-input:checked {
  background-color: #28a745;
  border-color: #28a745;
}

.alert-success {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

.alert-info {
  background-color: #d1ecf1;
  border-color: #bee5eb;
  color: #0c5460;
}

.border-left {
  border-left: 4px solid #28a745 !important;
}

.border-5 {
  border-width: 4px !important;
}

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

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

.cookie-banner a {
  color: #28a745;
  font-weight: bold;
}

.cookie-banner a:hover {
  text-decoration: underline;
}

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

  .lead {
    font-size: 1.1rem;
  }

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

  .col-md-right {
    text-align: left !important;
  }

  .cookie-banner .col-md-4 {
    margin-top: 15px;
  }
}

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

  .h3 {
    font-size: 1.3rem;
  }

  .card-img-top {
    height: 180px;
  }

  .btn-lg {
    padding: 10px 20px;
    font-size: 14px;
  }
}
