.partnership-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 0;
    gap: 46px;
    background: #111B31;
    margin-bottom: 60px;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 100px;
}

.section-title {
    font-weight: 700;
    font-size: 50px;
    line-height: 102%;
    color: #FFFFFF;
}

.partnership-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 26px;
    height: auto;
}

.partnership-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 120px;
    gap: 30px;
    height: 155px;

    font-weight: 600;
    font-size: 35px;
    line-height: 35px;
    color: #FFFFFF;
}

.solid-card {
    background: #3530FA;
}

.border-card {
    border: 2px solid #3530FA;
}

.card-title {
    text-align: center;
}


@media (max-width: 992px) {
    .section-header {
        padding: 0 40px;
        width: 100%;
    }

    .section-title {
        font-size: 36px;
        text-align: center;
    }

    .partnership-card {
        padding: 50px 80px;
        font-size: 28px;
    }

    .partnership-options {
        gap: 20px;
    }
}


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

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

    .partnership-options {
        flex-direction: column;
        gap: 15px;
    }

    .partnership-card {
        padding: 40px 40px;
        font-size: 22px;
        height: auto;
        min-height: 120px;
    }
}
