

/* General body styling */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  color: #212529;
  line-height: 1.6;
}

/* Header and footer */
header, footer {
  background-color: #343a40;
  color: white;
}

/* Section spacing */
section {
  padding: 2rem 0;
}

/* Image styling */
img {
  max-width: 100%;
  height: auto;
  margin-top: 1rem;
  border-radius: 8px;
}

/* --- Custom Styling Element #1: Fade-in Animation on Scroll --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  animation: fadeInUp 1s ease-in-out;
}

/* --- Custom Styling Element #2: Stylized Quote Block --- */
.lead {
  font-style: italic;
  border-left: 5px solid #6c757d;
  padding-left: 15px;
  margin-top: 1rem;
  color: #495057;
  background-color: #e9ecef;
  border-radius: 4px;
}


.navbar-nav .nav-link {
  font-weight: 500;
  color: #343a40;
}

.navbar-nav .nav-link:hover {
  color: #0d6efd;
}
