:root {
  --primary: #001a4d;
  --primary-light: #003d99;
  --secondary: #0051cc;
  --info: #0066ff;
  --dark: #1a1a1a;
  --light: #f5f7fa;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: #001a4d;
}

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

a:hover {
  color: #0051cc;
  text-decoration: none;
}

.navbar-brand {
  color: #001a4d !important;
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-link {
  color: #333 !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #003d99 !important;
}

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #001a4d 0%, #003d99 100%);
}

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

.hero-section p {
  color: rgba(255, 255, 255, 0.9);
}

.btn-primary {
  background-color: #003d99;
  border-color: #003d99;
  color: white;
  font-weight: 600;
  padding: 10px 30px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0051cc;
  border-color: #0051cc;
  color: white;
}

.btn-info {
  background-color: #0066ff;
  border-color: #0066ff;
  color: white;
  font-weight: 600;
  padding: 10px 30px;
  transition: all 0.3s ease;
}

.btn-info:hover {
  background-color: #0052cc;
  border-color: #0052cc;
  color: white;
}

.btn-light {
  background-color: white;
  border-color: white;
  color: #003d99;
  font-weight: 600;
}

.btn-light:hover {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
  color: #001a4d;
}

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

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

.card-title {
  color: #001a4d;
  font-weight: 600;
}

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

.text-info {
  color: #0066ff !important;
}

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

.bg-info {
  background-color: #0066ff !important;
}

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

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

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

.border-info {
  border-color: #0066ff !important;
}

footer {
  margin-top: 60px;
}

footer h5 {
  color: white;
}

footer a {
  color: #ccc;
  transition: color 0.3s ease;
}

footer a:hover {
  color: white;
}

.list-group-item {
  background-color: transparent;
  border-color: #e0e0e0;
}

.list-group-item:hover {
  background-color: #f5f7fa;
}

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

.cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
  flex: 1;
}

.cookie-banner a {
  color: #0066ff;
}

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

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

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

  .container {
    padding: 0 15px;
  }

  .navbar-nav {
    text-align: center;
  }

  .nav-item {
    margin: 10px 0;
  }

  .cookie-banner {
    bottom: 0;
  }

  .cookie-banner.show {
    flex-direction: column;
    gap: 15px;
  }

  .cookie-banner button {
    width: 100%;
  }
}

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

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.text-balance {
  text-wrap: balance;
}

hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-control {
  border-radius: 6px;
  border: 1px solid #ddd;
  padding: 10px 15px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: #003d99;
  box-shadow: 0 0 0 0.2rem rgba(0, 61, 153, 0.25);
}

.form-group label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.form-check-input {
  width: 20px;
  height: 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

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