/* Специфичные стили для партнерской программы */

.join-team {
    padding: 4rem 0;
    text-align: center;
}

.join-team .subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--secondary);
}

.team-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
    margin-bottom: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.team-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.team-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Адаптивность для партнерки */
@media (max-width: 768px) {
    .team-buttons {
        flex-direction: column;
    }
    
    .cta-btn, .cta-btn-outline {
        width: 100%;
    }
}