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

html,
body {
  height: 100%;
}

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: #fff;
}

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

a:hover {
  color: #003d82;
  text-decoration: none;
}

.navbar-brand {
  font-size: 24px;
}

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

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

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

.hero-section {
  background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
}

.hero-section img {
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.page-header {
  background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
}

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

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

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

.btn-primary {
  background-color: #0056b3;
  border-color: #0056b3;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #003d82;
  border-color: #003d82;
}

.btn-light {
  background-color: #fff;
  color: #333;
  font-weight: 600;
}

.btn-light:hover {
  background-color: #f0f0f0;
  color: #333;
}

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

.form-control:focus {
  border-color: #0056b3;
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

textarea.form-control {
  resize: vertical;
}

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

.custom-control-label {
  cursor: pointer;
  color: #666;
}

.custom-control-input:checked ~ .custom-control-label {
  color: #333;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #0056b3;
  border-color: #0056b3;
}

footer {
  background-color: #1a1a1a;
  color: #fff;
  margin-top: 5rem;
}

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

footer a:hover {
  color: #0056b3;
}

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

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

.text-white-50 {
  color: rgba(255, 255, 255, 0.5);
}

.cookie-banner {
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.font-weight-bold {
  font-weight: 700;
}

.lead {
  font-size: 18px;
  color: #666;
}

@media (max-width: 768px) {
  .display-4 {
    font-size: 2.5rem;
  }

  .hero-section {
    padding: 2rem 0;
  }

  .hero-section .col-md-6 {
    margin-top: 2rem;
  }

  .navbar-nav {
    padding-top: 1rem;
  }

  .navbar-nav .nav-item {
    margin-bottom: 0.5rem;
  }

  .card-img-top {
    height: 200px;
  }

  .btn-block {
    width: 100%;
  }

  .cookie-banner p {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .display-4 {
    font-size: 2rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .lead {
    font-size: 16px;
  }
}
