.banner-section {
    background-size: cover;
    background-position: center;
    color: #ffffff;
    font-family: 'Didact Gothic', sans-serif;
    padding: 0 0;
    height: 500px;
    display: flex;
    justify-content: center; /* Horizontally center the content */
    align-items: center; /* Vertically center the content */
    text-align: center; /* Center text inside the section */
    z-index: 1;
}

.banner-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 500px;
    background: rgba(0, 0, 0, 0.2);
}



/* Mobile Responsiveness */
@media (max-width: 768px) {

    /* Banner Section */
    .banner-section {
        /* height: 300px; */
        font-size: 14px;
    }

}
















