.wrapper {
    padding: 24px;
    background-image: url("../img/CommunityPartners-search-bg.png");
    background-size: cover;
    background-position: center bottom;
}

.jumbotron {
    width: 100%;
}
#search_bar {
    width: 100%;
    padding: 24px 32px;
    border: 1px solid gray;
    border-radius: 42px;
    font-weight: 500;
    font-size: 20px;
}

#search_bar::placeholder {
    color: black;
}

.notification-bar {
    width: fit-content;
    background-color: rgba(0, 0, 0, 0.65);
    border-radius: 8px;
}

.banner-text {
    font-size: 24px;
    font-weight: 500;
    line-height: 40px;
    color: white;
}

/* Roadmap image */
.img-roadmap {
    width: 100%;
    height: auto;
}

.desktop-view {
    display: none;
}

.mobile-view {
    display: block;
}

/* Responsive Styles */
@media (min-width: 1200px) {
    .wrapper {
        padding: 50px 90px;
    }
    .img-roadmap {
        width: 350px;
        height: auto;
    }
    .desktop-view {
        display: block;
    }

    .mobile-view {
        display: none;
    }
}


@media (max-width: 767px) {
    h1 {
        font-size: 24px;
    }

    .banner-text {
        font-size: 16px;
        line-height: 28px;
    }

    .custom-list {
        font-size: 16px;
    }

    #search_bar {
        font-size: 16px;
    }
}
