.download-button-container {
    display: flex;
    justify-content: center;
    margin-top: -10px;
    margin-bottom: 20px;
    position: relative;
}

.download-button {
    display: inline-block;
    padding: 10px 15px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin: 0;
    text-align: center;
    transition: background-color 0.3s, color 0.3s; /* Плавный переход для фона и текста */
}

.download-button:hover {
    background-color: #005f8a; /* Более тёмный оттенок основного цвета при наведении */
    color: #ffffff; /* Цвет текста при наведении */
}
