
    /* Блок "Присоединиться" - Десктопная версия */
.cta-section {
    background: #F1F5F8;
    padding: 40px 60px 60px;
    display: flex;
    justify-content: center;
}

.cta-container {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
}

.cta-content {
    position: relative;
    width: 1320px;
    height: 334px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
}

.cta-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(30, 67, 129, 1) 0%, rgba(30, 67, 129, 0) 100%);
    z-index: 2;
}

.cta-text-content {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 40px 40px 60px;
}

.cta-text-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 720px;
}

.cta-title {
    font-family: Manrope;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.366;
    color: #FFFFFF;
    margin: 0;
}

.cta-description {
    font-family: Manrope;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.4;
    color: #FFFFFF;
    margin: 0;
}

.cta-button {
    background: #FFFFFF;
    backdrop-filter: blur(20px);
    border: none;
    border-radius: 12px;
    padding: 16px 20px;
    font-family: Manrope;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.111;
    color: #153162;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: fit-content;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    text-decoration: none;
    color: #153162;
}

/* Планшетная версия */
@media (max-width: 1200px) and (min-width: 481px) {
    .cta-section {
        padding: 20px 40px 40px;
    }

    .cta-content {
        width: 100%;
        height: auto;
        min-height: 250px;
    }

    .cta-text-content {
        padding: 30px;
        gap: 24px;
        text-align: center;
        align-items: center;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-description {
        font-size: 18px;
    }

    .cta-button {
        font-size: 16px;
        padding: 14px 18px;
    }
}

/* Мобильная версия (480px и меньше) */
@media (max-width: 480px) {
    .cta-section {
        padding: 20px 16px;
    }

    .cta-content {
        width: 320px;
        height: auto;
        margin: 0 auto;
    }

    .cta-text-content {
        padding: 24px 24px 32px;
        gap: 20px;
    }

    .cta-text-block {
        gap: 10px;
    }

    .cta-title {
        font-size: 24px;
        line-height: 1.25;
    }

    .cta-description {
        font-size: 16px;
        line-height: 1.366;
    }

    .cta-button {
        background: #FFFFFF;
        font-size: 14px;
        font-weight: 600;
        padding: 10px 20px;
        width: 100%;
        text-align: center;
    }
}
