.lock-section {
    padding: 40px 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.lock-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.lock-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lock-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 40px;
    line-height: 1.5;
}

.lock-description br {
    display: block;
    content: "";
    margin-top: 10px;
}

.lock-button {
    background: #B78628;
    border: none;
    border-radius: 25px;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Стили для десктопа */
@media (min-width: 769px) {
    .lock-description {
        font-size: 27px;
    }

    .lock-button {
        font-size: 28px;
        padding: 15px 60px;
    }
}

/* Медиа запросы для мобильных */
@media (max-width: 768px) {
    .lock-description {
        font-size: 24px;
        padding: 0 15px;
    }

    .lock-button {
        font-size: 24px;
        padding: 12px 40px;
    }
} 