.custom-section .cta-banner {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--alice-blue-2);
    padding: 36px 20px;
    border: 1px solid #D1D9E0;
    border-radius: 16px;
}

.custom-section .cta-banner.text-left {
    text-align: left;
}

.custom-section .cta-banner>h2 {
    margin-top: 0;
}

.custom-section .cta-banner>p {
    line-height: 1.4rem;
    margin: 0;
}

.custom-section .cta-banner>p>a {
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1rem;
    text-decoration: none;
    display: inline-block;
    background-color: var(--azure);
    color: var(--white);
    margin-top: 30px;
    padding: 0.9em 1.1em;
    border: 1px solid transparent;
    border-radius: 0.625rem;
}

.custom-section .cta-banner>p>a:hover {
    background-color: var(--bleu-de-france);
}

.custom-section .cta-banner.dark {
    background-color: var(--polynesian-blue);
    color: var(--white);
}

.custom-section .cta-banner.dark>h2 {
    color: var(--white);
}

.custom-section .cta-banner.dark>p>a {
    background-color: var(--white);
    color: var(--azure);
}

.custom-section .cta-banner.dark>p>a:hover {
    background-color: var(--bleu-de-france-a20);
    color: var(--white);
    border-color: var(--white-a80);
}