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

:root {
  --primary-red: #dc3545;
  --dark-bg: #1a1a1a;
  --light-gray: #f8f9fa;
  --text-dark: #212529;
  --text-muted: #6c757d;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

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

.navbar-brand {
  color: var(--primary-red) !important;
  font-size: 1.5rem;
}

.page-header {
  border-top: 4px solid var(--primary-red);
}

.info-icon {
  font-size: 2rem;
  color: var(--primary-red);
  font-weight: bold;
}

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

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

.btn-danger {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-danger:hover {
  background-color: #bd2130;
  border-color: #bd2130;
  transform: translateY(-2px);
}

.btn-outline-danger {
  color: var(--primary-red);
  border-color: var(--primary-red);
  font-weight: 600;
}

.btn-outline-danger:hover {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
  color: white;
}

.border-danger {
  border-color: var(--primary-red) !important;
}

footer {
  border-top: 4px solid var(--primary-red);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  border-top: 2px solid var(--primary-red);
  padding: 1rem 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.alert-info {
  background-color: #cfe2ff;
  border-color: #b6d4fe;
  color: #084298;
}

.alert-warning {
  background-color: #fff3cd;
  border-color: #ffecb5;
  color: #664d03;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-dark);
}

.text-danger {
  color: var(--primary-red) !important;
}

.bg-danger {
  background-color: var(--primary-red) !important;
}

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

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

  .lead {
    font-size: 1rem;
  }

  .cookie-banner {
    font-size: 0.875rem;
  }

  main {
    margin-top: 60px !important;
  }
}

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

  .card-body {
    padding: 1rem;
  }
}
