body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

.nav-link {
  color: #333 !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: #004a99 !important;
}

section {
  scroll-margin-top: 80px;
}

.text-primary {
  color: #004a99 !important;
}

.btn-primary {
  background-color: #004a99;
  border-color: #004a99;
}

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

.btn-outline-primary {
  color: #004a99;
  border-color: #004a99;
}

.btn-outline-primary:hover {
  background-color: #004a99;
  border-color: #004a99;
}

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

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.1) !important;
}

#homeCarousel .carousel-item img {
  height: 500px;
  object-fit: cover;
}

@media (max-width: 768px) {
  #homeCarousel .carousel-item img {
    height: 300px;
  }
}

