.download-page {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

.download-container {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    padding: 40px 50px;
    max-width: 900px;
    width: 100%;
    animation: fadeIn 0.6s ease;
}

.download-title {
    text-align: center;
    font-size: 1.9em;
    font-weight: 600;
    color: #1f1f1f;
    margin-bottom: 40px;
    border-bottom: 2px solid #ececec;
    padding-bottom: 10px;
}

.section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.4em;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2em;
    color: #495057;
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: 500;
}

.section-text {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.download-button {
    display: inline-block;
    background-color: #ffc107;
    color: #222;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.download-button:hover {
    background-color: #ffca2c;
    transform: translateY(-2px);
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.images-grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.images-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #dcdcdc, transparent);
    margin: 40px 0;
}

/* Анимация */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
    .download-page {
        display: flex;
        justify-content: center;
        padding: 10px 5px;
    }

    .download-container {
        padding: 25px 20px;
        border-radius: 12px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }

    .download-title {
        font-size: 1.5em;
        margin-bottom: 25px;
    }

    .section-title {
        font-size: 1.2em;
    }

    .section-text {
        font-size: 0.95em;
        text-align: left;
    }

    .download-button {
        display: block;
        width: 100%;
        text-align: center;
        padding: 14px;
        font-size: 1em;
    }

    .images-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .images-grid img {
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .download-title {
        font-size: 1.3em;
    }

    .section-text {
        font-size: 0.9em;
    }

    .download-button {
        font-size: 0.95em;
    }
}