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

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

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

.nav-link:hover {
  color: #dc3545;
}

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

.hero-section h1 {
  color: #212529;
  margin-bottom: 20px;
}

.hero-section .lead {
  color: #6c757d;
  margin-bottom: 30px;
}

.btn-danger {
  background-color: #dc3545;
  border-color: #dc3545;
  font-weight: 600;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

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

.btn-outline-dark {
  border-width: 2px;
  font-weight: 600;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.icon-badge {
  font-size: 3rem;
  display: inline-block;
}

.number-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #dc3545;
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
}

.card {
  transition: all 0.3s ease;
}

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

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

.page-header {
  padding: 60px 0;
}

.page-header h1 {
  color: #212529;
}

.page-header .lead {
  color: #6c757d;
}

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

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

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

footer a:hover {
  opacity: 0.8;
  text-decoration: none;
}

.form-control {
  border: 2px solid #dee2e6;
  padding: 12px 15px;
  transition: border-color 0.3s ease;
}

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

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

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

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

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
}

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

.cookie-banner a:hover {
  color: #c82333;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
    text-align: center;
  }

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

  .btn-lg {
    margin-bottom: 10px;
    width: 100%;
  }

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

  .cookie-banner .text-right {
    text-align: center;
    margin-top: 15px;
  }
}

.alert {
  border-radius: 8px;
}

.card {
  border-radius: 8px;
  overflow: hidden;
}

.btn {
  border-radius: 6px;
}

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