.downloads-section {
    position: relative;
    overflow: hidden;
    padding: 4rem 0 6rem;
    background-color: #f8f9fa;
}

.decorative-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.decor-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, #3245ff0d, #3245ff00 70%);
}

.decor-circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
}

.decor-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
}

.decor-wave {
    display: none;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.downloads-header {
    text-align: center;
    margin-bottom: 3rem;
}

.downloads-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2980b9;
    margin-bottom: 1rem;
}

.downloads-header p {
    font-size: 1.25rem;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto;
}

.downloads-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-title h2 {
    font-size: 2.25rem;
    font-weight: 600;
    color: #3245ff;
    margin-bottom: .5rem;
}

.title-decoration {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3245ff, #3498db);
    margin: 0 auto;
    border-radius: 2px;
}

.downloads-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #5a6c7d;
    max-width: 900px;
    margin: 0 auto;
}

.downloads-list-container {
    margin-top: 2rem;
}

.downloads-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.download-item {
    background-color: #fff;
    border: 1px solid #e0e6ed;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all .3s ease;
    box-shadow: 0 4px 12px #0000000d;
}

.download-item:hover {
    box-shadow: 0 12px 32px #0000001a;
    transform: translateY(-4px);
    border-color: #3245ff;
}

.download-item-header {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.file-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.file-info {
    flex: 1;
}

.file-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: .75rem;
    color: #2c3e50;
}

.file-description {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.file-meta {
    display: flex;
    gap: 1.5rem;
    font-size: .9rem;
    color: #8a9aa9;
}

.download-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f4f8;
}

.preview-button,
.download-button {
    padding: .75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all .3s ease;
    display: inline-block;
    text-align: center;
}

.preview-button {
    background-color: #f8f9fa;
    color: #495057;
    border: 1px solid #dee2e6;
}

.preview-button:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
    transform: translateY(-2px);
}

.download-button {
    background: linear-gradient(90deg, #3245ff, #3498db);
    color: #fff;
    border: none;
    flex: 1;
}

.download-button:hover {
    background: linear-gradient(90deg, #2938cc, #2980b9);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px #3245ff4d;
}

.reveal-animation {
    opacity: 0;
    transform: translateY(30px);
    animation: reveal .8s ease forwards;
}

@keyframes reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.download-item:nth-child(1) {
    animation-delay: .1s;
}

.download-item:nth-child(2) {
    animation-delay: .2s;
}

.download-item:nth-child(3) {
    animation-delay: .3s;
}

.download-item:nth-child(4) {
    animation-delay: .4s;
}

.download-item:nth-child(5) {
    animation-delay: .5s;
}

@media (max-width: 992px) {
    .downloads-list {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .downloads-section {
        padding: 3rem 0 4rem;
    }
    .container {
        padding: 0 1.5rem;
    }
    .downloads-header h1 {
        font-size: 2.25rem;
    }
    .downloads-header p {
        font-size: 1.1rem;
    }
    .section-title h2 {
        font-size: 1.75rem;
    }
    .downloads-description {
        font-size: 1rem;
    }
    .downloads-list {
        grid-template-columns: 1fr;
    }
    .download-item {
        padding: 1.5rem;
    }
    .file-icon {
        font-size: 2.5rem;
    }
    .file-title {
        font-size: 1.25rem;
    }
    .file-meta {
        flex-direction: column;
        gap: .5rem;
    }
    .preview-button,
    .download-button {
        padding: .65rem 1.25rem;
        font-size: .95rem;
    }
}

@media (max-width: 480px) {
    .downloads-header h1 {
        font-size: 2rem;
    }
    .download-item-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    .file-icon {
        font-size: 3.5rem;
    }
    .download-actions {
        flex-direction: column;
    }
}

