body {
  background-color: #f8f9fa;
  color: #343a40;
}

.site-navbar {
  background-color: #1D2A3A;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0;
  left: 0;
}

.site-logo a {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.site-menu li {
  padding: 0 15px;
}

.site-menu a {
  color: #fff !important;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  transition: color 0.3s, transform 0.3s;
}

.site-menu a:hover {
  color: #f8f9fa !important;
  transform: scale(1.1);
}

.section-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1D2A3A;
  margin-bottom: 20px;
}

.card {
  margin-bottom: 30px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.03);
}

.card-body {
  background-color: #1D2A3A;
  color: white;
  padding: 20px;
  border-radius: 10px;
}

.card-title a {
  color: white;
  text-decoration: none;
}

.card-title a:hover {
  text-decoration: underline;
}

.footer-section {
  border-top: 1px solid #ddd;
  margin-top: 60px;
}

@media (max-width: 991px) {
  .site-menu {
    display: none;
  }
}

