* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #fff;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Хедер */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo-text {
    width: 50px;
    height: 50px;
    background-color: #ff6f61;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    border-radius: 8px;
    margin-right: 1rem;
    transition: transform 0.3s ease;
}

.logo-text:hover {
    transform: rotate(10deg);
}

.header-text h1 {
    font-size: 1.8rem;
    font-weight: 600;
}

.header-text p {
    font-size: 0.9rem;
    color: #666;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Переключатель языков */
.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    background-color: #fff;
    border: 2px solid #ff6f61;
    color: #ff6f61;
    padding: 0.4rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 50px;
    height: 30px;
    line-height: 1;
    text-align: center;
}

.lang-btn:hover {
    background-color: #ff6f61;
    color: #fff;
}

.lang-btn.active {
    background-color: #ff6f61;
    color: #fff;
}

/* Герой (бывший баннер) */
.hero {
    background: linear-gradient(rgba(255, 111, 97, 0.1), rgba(255, 111, 97, 0.1)), url('hero-bg.jpg');
    background-size: cover;
    padding: 5rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeIn 1s ease;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-button {
    animation: slideUp 1s ease;
}

/* О нас */
.about {
    padding: 4rem 0;
    text-align: center;
}

.about h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Услуги */
.services {
    padding: 4rem 0;
    background-color: #fafafa;
}

.services h2 {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 1rem;
    color: #666;
}

/* Контакты */
.contacts {
    padding: 4rem 0;
    text-align: center;
}

.contacts h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contacts p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.contacts-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-link {
    padding: 0.8rem 1.5rem;
    background-color: #ff6f61;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.contact-link:hover {
    background-color: #e65b50;
}

/* Футер */
footer {
    background-color: #fafafa;
    padding: 1.5rem 0;
    text-align: center;
    color: #666;
}

/* Кнопка звонка */
.call-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #ff6f61;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.call-button:hover {
    transform: scale(1.1);
}

.call-button img {
    width: 25px;
    height: 25px;
}

/* Кнопки Marquiz */
.marquiz-button {
    transition: opacity 0.3s ease;
}

.kaz-active {
    display: block;
}

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Адаптивность */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .header-left {
        margin-bottom: 1rem;
    }

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

    .hero p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contacts-grid {
        flex-direction: column;
    }

    .lang-btn {
        padding: 0.3rem 0.8rem;
        font-size: 0.9rem;
        min-width: 45px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .header-text h1 {
        font-size: 1.5rem;
    }

    .header-text p {
        font-size: 0.8rem;
    }

    .lang-btn {
        padding: 0.2rem 0.6rem;
        font-size: 0.8rem;
        min-width: 40px;
        height: 25px;
    }
}

/* Секция Hero */
.hero {
    background: linear-gradient(rgba(255, 111, 97, 0.1), rgba(255, 111, 97, 0.1)), url('hero-bg.jpg');
    background-size: cover;
    padding: 5rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeIn 1s ease;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-button {
    animation: slideUp 1s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Баннеры Marquiz */
.marquiz-banner {
    transition: opacity 0.3s ease;
}

.kaz-active {
    display: block;
}

/* Адаптивность для Hero */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

/* Остальные стили остаются прежними, как в предыдущей версии */