.home-img {
    width: 100%;
    height: auto;
    min-height: 200px;
    position: relative; /* Ensure the pseudo-element is positioned correctly */
}

.image-container {
    position: relative;
    max-height: 362px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(33, 37, 41, 0.5); /* Example RGB overlay with 50% opacity */
    z-index: 1; /* Ensure the overlay is above the image */
    pointer-events: none; /* Allow clicks to pass through the overlay */
}

.logo-title-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.logo-img {
    max-height: 134px;
    margin-bottom: 10px;
    width: 100%;
    height: auto;
}

.title {
    font-size: 45px;
    font-weight: bold;
    color: #F6E1A1;;
}
.card-body {
    border-radius: 10px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
    background: #F7F7F7;
}
.card {
    border: unset;
}

.faq-container {
    gap: 20px;
    padding: 26px 20px;
    border-radius: 20px !important;
    background: #FFF;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25) !important;
}
h5 {
    font-weight: 900 !important;
}
p {
    color: #000 !important;
    font-weight: 500;
}
.faq-label {
    font-size: 12px;
    line-height: 12px;
}
.highlight {
    background-color: yellow;
}
.subnavigation {
    margin-top: -5em;
}
main {
    background-color: unset;
}
.main-bingo, .home-intro {
    min-height: 180px;
}

@media screen and (max-width: 756px) {
    .navbar-dark {
        padding: 15px !important;
    }
}
