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

html,
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: #ffffff;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main,
section {
  flex: 1;
}

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

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

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

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

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
  font-weight: 600;
}

.btn-outline-danger:hover {
  background-color: #dc3545;
  border-color: #dc3545;
  color: #fff;
}

.hero {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-bottom: 1px solid #e9ecef;
}

.card {
  transition: all 0.3s ease;
  border-radius: 8px;
}

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

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

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

.bg-light {
  background-color: #f8f9fa !important;
}

.bg-dark {
  background-color: #1a1a1a !important;
}

footer {
  margin-top: auto;
  border-top: 1px solid #e9ecef;
}

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

.cookie-banner {
  background-color: #f8f9fa;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
  position: sticky;
  bottom: 0;
  z-index: 1000;
}

.form-control {
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

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

.form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.3rem;
  cursor: pointer;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  line-height: 1.3;
}

.alert {
  border-radius: 4px;
  padding: 1rem;
}

.alert-warning {
  background-color: #fff3cd;
  border-color: #ffc107;
  color: #856404;
}

.text-muted {
  color: #6c757d !important;
}

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

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

  .hero .display-4 {
    font-size: 2rem;
  }

  .hero .lead {
    font-size: 1.1rem;
  }

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

  .card-body {
    padding: 1.25rem;
  }

  footer {
    margin-top: auto;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }

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

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

  .lead {
    font-size: 1rem;
  }
}
