body {
    padding-top: 56px; /* Adjust based on navbar height */
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1350&q=80'); /* Placeholder image */
    background-size: cover;
    background-position: center;
    color: white;
}

.section-heading {
    font-weight: bold;
    margin-bottom: 1rem;
}

.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card-title {
    font-weight: bold;
}

.card-footer {
    background-color: white;
    border-top: none;
}

.navbar-brand {
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section .lead {
        font-size: 1rem;
    }
} 