body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    text-align: center;
    padding: 20px;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 30px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: left;
}

h1 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
}

h2 {
    margin-top: 20px;
    font-size: 1.8em;
    color: #222;
}

p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Контейнер для кнопок */
.app-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0;
    justify-content: flex-start;
}

/* Общий стиль кнопок */
.app-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    color: #fff !important; /* Перебиваем общий цвет ссылок */
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 15px;
    min-width: 140px;
    text-align: center;
}

.app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-decoration: none;
}

/* Цвета для разных магазинов */
.google-play {
    background-color: #34a853; /* Зеленый Google */
}

.rustore {
    background-color: #0056f3; /* Синий RuStore */
}

.appgallery {
    background-color: #ef333e; /* Красный Huawei */
}

/* Секция контактов чуть ниже */
.contact-info {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 30px;
}