/* Стили для главной страницы */

/* Секция с баннером */
.qrt517 {
    background-image: url('../img/banner.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 6rem 2rem;
    margin-bottom: 3rem;
    position: relative;
    text-align: center;
}

.qrt517::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.yzx831 {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.yzx831 h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.yzx831 p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Секция с преимуществами */
.wvu219 {
    text-align: center;
    padding: 2rem 0;
}

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

.cde398 {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    padding: 1.5rem;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cde398:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cde398 img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 3px;
    margin-bottom: 1rem;
}

.cde398 h3 {
    margin-bottom: 0.5rem;
}

/* Секция с промо-предложениями */
.iop562 {
    padding: 2rem 0;
}

.iop562 h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.rst328 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.uvw741 {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.xyz913 {
    font-size: 1.4rem;
    font-weight: bold;
    color: #1a3b5d;
    margin: 1rem 0;
}

/* Адаптивная верстка */
@media (max-width: 768px) {
    .qrt517 {
        padding: 4rem 1rem;
    }

    .yzx831 h2 {
        font-size: 2rem;
    }

    .bnm147 {
        flex-direction: column;
        align-items: center;
    }

    .cde398 {
        width: 100%;
    }

    .rst328 {
        flex-direction: column;
        align-items: center;
    }

    .uvw741 {
        width: 100%;
    }
} 