/* Общее оформление */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}



/* Hero секция */
.hero {
    position: relative;
    height: 100vh;
    /* background: url('images/hero-image.jpg') no-repeat center center; */
    background-size: cover;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #18183d;
}

.hero h1 {
    font-size: 3rem;
    margin: 0;
}

.hero p {
    font-size: 1.5rem;
}

/* О компании */
.about {
    padding: 50px 20px;
    background-color: #f4f4f4;
}

.about h2 {
    text-align: center;
    font-size: 2rem;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.5;
}

.content {
    max-width: 1280px;
    margin: 0 auto;
}
/* Тарифы */
.pricing {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.pricing h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.pricing-info {
    display: flex;
    justify-content: space-around;
}

.price h3 {
    font-size: 1.5rem;
}

.price p {
    font-size: 1.2rem;
}

/* Карусель */
.clients {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.carousel {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.carousel-item img {
    max-height: 100px;
    object-fit: contain;
}

/* Контакты */
.contacts {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

/* Анимация скролинга */
@keyframes scrollEffect {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-content, .about, .pricing, .clients, .contacts {
    animation: scrollEffect 1s ease-out;
}

/* Устройства с маленьким экраном */
@media (max-width: 768px) {
    .pricing-info {
        flex-direction: column;
        gap: 20px;
    }

    .carousel {
        flex-direction: column;
    }
}
