.ctnr {
    max-width: 1120px;
}

.download-section {
    padding: 100px 0;
}

.download-header {
    position: relative;
    margin-bottom: 60px;
}

.bg-title {
    font-size: clamp(56px, 10vw, 120px);
    font-weight: 700;
    color: #bfc9d157;
    text-transform: uppercase;
    margin: 0;
    line-height: .85;
    letter-spacing: -5px;
}

.download-tabs-container {
    margin-bottom: 30px;
    padding-top: 40px;
}

.download-tabs {
    border-bottom: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    list-style: none;
}

.download-tabs .nav-link {
    border: none !important;
    background-color: #f5f5f5;
    color: #999;
    padding: 8px 16px;
    font-size: 16px;
    border-radius: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.download-tabs .nav-link.active {
    background-color: #0066cc;
    color: #fff;
}

.download-tabs .nav-link:hover {
    color: #666;
    background-color: #d6e2ee;
}

.download-tabs .nav-link.active:hover {
    color: #fff;
    background-color: #005bb5;
}

.category-title {
    color: #0066cc;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 25px;
    margin-top: 10px;
    text-transform: uppercase;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.download-card {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    padding: 25px;
    border: 1px solid #f2f2f2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.download-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    margin-top: 0;
}

.download-card .version {
    font-size: 12px;
    font-weight: 700;
    color: #555;
    margin-bottom: 20px;
}

.file-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.file-list li {
    margin-bottom: 12px;
}

.file-list li:last-child {
    margin-bottom: 0;
}

.file-list a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: flex-start;
    transition: color 0.2s;
    line-height: 1.4;
}

.file-list a .doc-icon {
    width: 14px;
    height: 14px;
    margin-right: 8px;
    margin-top: 2px;
    color: #a0a0a0;
    flex-shrink: 0;
}

.file-list a:hover {
    color: #0066cc;
}

.file-list a:hover .doc-icon {
    color: #0066cc;
}

/* Responsive */
.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .download-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .download-grid {
        grid-template-columns: 1fr;
    }
}
