/**
 * Financing Block Styles
 */

.financing-section {
    background: linear-gradient(180deg, rgba(46, 121, 237, 0.80) 23.64%, rgba(41, 71, 133, 0.80) 68.88%);
    padding: 100px 0;
}

/* Main Box - White border, dark blue bg, full width (same as membership) */
.financing-box {
background-color: var(--color-dark-blue);
    border-radius: 12px;
    border: 10px solid var(--color-white);
    padding: 10px;
}

/* Inner Box - Red border (same as membership) */
.financing-box-inner {
    border-radius: 6px;
    border: 2px solid var(--color-primary-red);
    padding: 60px 40px;
    text-align: center;
}

/* Title - Same style as services/membership */
.financing-title-wrapper {
    text-align: center;
}

.financing-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 400;
    color: var(--color-white);
    margin: 0;
    line-height: normal;
    padding: 10px 60px 25px 60px;
    background-image: url('/wp-content/uploads/2026/02/Group-1000002165.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    min-width: 658px;
    display: inline-block;
}

/* Logos Row */
.financing-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.financing-logo {
    width: auto;
}

.financing-plus {
    display: flex;
    align-items: center;
    justify-content: center;
}

.financing-plus svg {
    display: block;
}

/* Content */
.financing-content {
    font-family: var(--font-content);
    font-size: 16px;
    font-weight: 400;
    color: rgba(250, 250, 250, 0.80);
    text-align: center;
    max-width: 833px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.financing-content p {
    margin: 0;
}

/* CTA */
.financing-cta {
    text-align: center;
}

/* Responsive */
@media (max-width: 991px) {
    .financing-title {
        font-size: 42px;
        min-width: 100%;
        padding: 10px 40px 20px 40px;
        margin-bottom: 20px;
    }

    .financing-logos {
        gap: 20px;
    }

}

@media (max-width: 768px) {
    .financing-section {
        padding: 80px 0;
    }

    .financing-box-inner {
        padding: 50px 20px;
    }

    .financing-title {
        font-size: 32px;
        padding: 8px 30px 15px 30px;
    }

    .financing-logos {
        flex-wrap: wrap;
        gap: 15px;
    }

}

@media (max-width: 480px) {
    .financing-box {
        border-width: 6px;
    }

    .financing-title {
        font-size: 28px;
    }

    .financing-logos {
        flex-direction: column;
    }
}
