.full-width-banner {
    width: 100%;
    padding: 60px 0;
}

/* Background Color Options */
.full-width-banner.bg-white {
    background: #FFFFFF;
}

.full-width-banner.bg-light-blue {
    background: #EBF5FF;
}

.full-width-banner.bg-light-gray {
    background: #F5F5F5;
}

.full-width-banner__content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.full-width-banner__content h2 {
    color: #26296E;
    text-align: center;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 46px;
    font-style: normal;
    font-weight: 700;
    line-height: 55px;
    margin-bottom: 20px;
}

.full-width-banner__content p {
    color: #545458;
    text-align: center;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 33.75px;
}

.full-width-banner__content p:last-child {
    margin-bottom: 0;
}

/* Logos */
.full-width-banner__logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.full-width-banner__logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-width-banner__logo-img {
    max-width: 200px;
    height: auto;
}

@media (min-width: 1200px) {
    .full-width-banner {
        padding: 100px 0;
    }

    .full-width-banner__logos {
        gap: 50px;
    }

    .full-width-banner__logo-img {
        max-width: 150px;
    }
}