/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    margin-bottom: 1rem;
}

.display-3 {
    font-size: 3rem;
    font-weight: 700;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

/* Header Image Styling */
header.header-image {
    background-image: url('../images/header.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 5rem 0;
    text-align: center;
    margin-top: -1px; /* Prevent overlap with Navbar */
}

/* Navbar styling */
.navbar {
    margin-bottom: 0; /* Remove margin-bottom to avoid space above header */
}

/* Card Styles */
.card {
    border-radius: 0.5rem;
}

.card-header {
    border-bottom: none;
}

.card-body {
    background-color: #f8f9fa;
}

.card-title {
    font-size: 1.25rem;
}

.card-text {
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .display-3 {
        font-size: 2rem;
    }
}
