/* General Page Styling */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  color: #212529;
  line-height: 1.6;
}

/* Header Section */
h1, h2, h3, h4, h5 {
  font-weight: 600;
  color: #003366;
}

/* Paragraphs and Lists */
p {
  margin-bottom: 1rem;
}

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* Navbar */
.navbar-brand {
  font-weight: bold;
  letter-spacing: 0.5px;
}

.nav-link.active {
  font-weight: bold;
  border-bottom: 2px solid #ffffff;
}

/* Footer */
footer {
  font-size: 0.9rem;
}

/* Custom Section Blocks */
.bg-light {
  background-color: #ffffff !important;
}

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

.rounded {
  border-radius: 0.5rem !important;
}

/* Alerts */
.alert-info {
  background-color: #e7f3fe;
  border-left: 4px solid #0d6efd;
  color: #084298;
  padding: 1rem;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  h1, h2 {
    font-size: 1.5rem;
  }

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

