body {
    background-color: #f8f9fa;
}

.banner {
    position: relative;
    width: 100%;
}

.banner-text {
    background-color: rgba(0, 0, 0, 0.1); /* dark overlay */
    padding: 20px;
    border-radius: 8px;
}
.banner-text h1 {
    font-size: 3rem;       /* bigger font size */
    color: #ebedf7;        /* gold/yellow color */
    font-weight: bold;
}

.banner-text p.lead {
    font-size: 1.5rem;     /* larger subtitle */
    color: #acea0f;        /* orange color */
    font-weight: bold;
}
.card {
    border-radius: 0.5rem;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

