.financing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.financing-container h1 {
    text-align: center;
    font-weight: bold;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.financing-container p {
    text-align: center;
    margin-bottom: 1.2em;
}

.financing-container p span {
    font-size: 26px;
}

.financing-module {
    box-sizing: border-box;
    margin: 0px;
    text-align: left;
    border-width: 5px;
    border-style: solid;
    border-color: #207e20;
    width: 330px;
    border-radius: 4px;
    background: #fafcfb;
    padding-bottom: 1em;
}

.financing-module div {
    margin-bottom: 0.4em;
}

.financing-module img {
    display: block;
    margin: 0 auto;
    border-radius: 2px;
}

@media (max-width: 400px) {
    .financing-module {
        width: 98vw;
    }
    .financing-module img {
        width: 96vw;
        max-width: 320px;
    }
}