main {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 90px auto;
}

.section-title {
    text-align: center;
    color: #005eff;
    font-size: 32px;
    margin-bottom: 70px;
    font-weight: 700;
}

.downloads-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.download-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.download-info {
    flex: 1;
}

.download-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.download-description {
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.download-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #95a5a6;
}

.download-subject {
    background: #e8f4ff;
    color: #005eff;
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 600;
}

.download-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #005eff;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: #0044bf;
}

.file-size {
    color: #7f8c8d;
    font-size: 12px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .download-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .download-meta {
        justify-content: center;
    }

    .download-action {
        width: 100%;
    }

    .download-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }

    .download-title {
        font-size: 18px;
    }

    .download-meta {
        flex-direction: column;
        gap: 8px;
    }
}