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

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

.navbar-brand {
  font-size: 1.5rem;
  color: #dc3545 !important;
}

.navbar-light .navbar-nav .nav-link {
  color: #212529;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #dc3545;
}

.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 4rem 0;
}

.min-vh-75 {
  min-height: 75vh;
}

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

.btn-primary:hover,
.btn-primary:focus {
  background-color: #c82333;
  border-color: #bd2130;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.btn-outline-primary {
  color: #dc3545;
  border-color: #dc3545;
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: #dc3545;
  border-color: #dc3545;
  color: #ffffff;
  transform: translateY(-2px);
}

.text-primary {
  color: #dc3545 !important;
}

.bg-primary {
  background-color: #dc3545 !important;
}

.border-primary {
  border-color: #dc3545 !important;
}

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

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

.icon-circle {
  width: 80px;
  height: 80px;
  background-color: #dc3545;
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto;
}

.cta-section {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  padding: 4rem 0;
}

.page-header {
  background-color: #f8f9fa;
  border-bottom: 3px solid #dc3545;
}

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

footer a:hover {
  color: #dc3545 !important;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #212529;
  color: #ffffff;
  padding: 1.5rem 0;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

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

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

.cookie-banner .btn-light {
  background-color: #ffffff;
  color: #212529;
  font-weight: 600;
}

.cookie-banner .btn-outline-light {
  border-color: #ffffff;
  color: #ffffff;
  font-weight: 600;
}

.cookie-banner .btn-outline-light:hover {
  background-color: #ffffff;
  color: #212529;
}

.form-control:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

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

.shadow {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.shadow-sm {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
}

.shadow-lg {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 0;
  }

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

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

  .btn-lg {
    padding: 0.5rem 1.5rem;
  }

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

@media (max-width: 576px) {
  .min-vh-75 {
    min-height: auto;
  }

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

  .icon-circle {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}
