/* home.css — стили для главной страницы */

/* Стили для навигации (жирность ссылок) */
.nav-list li a {
    font-weight: 400;
}

.nav-list li.active a {
    font-weight: 700;  
}

/* Основные стили страницы (без изменений, всё как у вас) */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    padding: 2rem;
    max-width: 1450px;
    margin: 0 auto;
}

.block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    width: 100%;
}

.block-1 {
    margin-top: 5vh;
}

.block-2 {
    flex-direction: row;
}

.block-text {
    flex: 1;
    text-align: left;
}

.block-title {
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #000;
}

.block-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #333;
}

.block-image {
    flex: 0 0 auto;
    width: 333px;
    height: 333px;
}

.image-333 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.success-box {
    background-color: #000;
    color: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.success-box h2 {
    margin-top: 0;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 2rem 0;
}

.features-list li {
    background: rgba(255,255,255,0.1);
    margin-bottom: 1.2rem;
    padding: 1.2rem 1.5rem;
    border-radius: 10px;
    font-size: 1.2rem;
    line-height: 1.5;
}

.features-list li strong {
    color: #fff;
}

.cta {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 2rem 0 1.5rem;
}

.btn-success {
    display: inline-block;
    background: #fff;
    color: #000;
    text-decoration: none;
    padding: 12px 40px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: background 0.3s;
}

.btn-success:hover {
    background: #ddd;
}

@media (max-width: 900px) {
    .block {
        flex-direction: column !important;
        text-align: center;
    }
    .block-image {
        width: 100%;
        max-width: 333px;
        height: auto;
    }
    .block-1 {
        margin-top: 2rem;
    }
    .success-box {
        max-width: 100%;
    }
}