/* Подключение шрифта Roboto */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Шапка */
header {
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.app-icon {
    width: 50px;
    height: 50px;
}
h1 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    color: #333;
}
.language-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}
.language-switcher button {
    background: none;
    border: 1px solid #007BFF;
    color: #007BFF;
    cursor: pointer;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.language-switcher button:hover {
    background-color: #007BFF;
    color: white;
}

/* Основной контейнер */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Секции */
.section {
    padding: 20px;
    margin-bottom: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Описание */
.description-section {
    text-align: center;
}
.description h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}
.description p {
    font-size: 16px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Секция с рекламным баннером и кнопками скачивания */
.download-banner-section {
    text-align: center;
}
.banner {
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 10px;
    margin-bottom: 20px;
}
.download-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}
.download-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.download-button {
    transition: transform 0.3s ease;
}
.download-button:hover {
    transform: scale(1.05);
}
.download-buttons img {
    height: 50px;
    width: auto;
}

/* Видео */
.video-section {
    text-align: center;
}
.video-container video {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Контакты */
.contacts-section {
    text-align: center;
}
.contacts h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}
.contacts p {
    font-size: 16px;
    color: #555;
}
.contacts a {
    color: #007BFF;
    text-decoration: none;
}
.contacts a:hover {
    text-decoration: underline;
}

/* Разработчики */
.developers-section {
    text-align: center;
}
.developers-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}
.developers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.developer {
    text-align: center;
}
.developer img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}
.developer p {
    font-size: 16px;
    color: #555;
}

/* Футер */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* Медиа-запросы для адаптации */
@media (max-width: 768px) {
    /* Шапка */
    .header-content {
        flex-direction: column;
        gap: 10px;
    }
    h1 {
        font-size: 28px;
    }
    .language-switcher {
        position: static;
        margin-top: 10px;
        justify-content: center;
    }

    /* Описание */
    .description h2 {
        font-size: 22px;
    }
    .description p {
        font-size: 14px;
    }

    /* Кнопки скачивания */
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Разработчики */
    .developers {
        flex-direction: column;
        align-items: center;
    }

    /* Видео */
    .video-container video {
        max-width: 100%;
    }

    /* Контакты */
    .contacts h2 {
        font-size: 22px;
    }
    .contacts p {
        font-size: 14px;
    }

    /* Футер */
    footer {
        font-size: 14px;
    }
}