/* Committee Downloads Section */
.committee-downloads-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.committee-downloads-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2e5990, #1a3a64, #2e5990);
}

.downloads-header {
    text-align: center;
    margin-bottom: 60px;
}

.downloads-header .header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.downloads-header .decoration-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2e5990, transparent);
}

.downloads-header .decoration-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2e5990, #1a3a64);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: 0 4px 15px rgba(46, 89, 144, 0.3);
}

.downloads-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a3a64;
    margin: 15px 0 10px;
    letter-spacing: -0.5px;
}

.downloads-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 400;
}

/* Downloads Grid */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Download Card */
.download-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(46, 89, 144, 0.1);
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2e5990, #1a3a64);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.download-card:hover::before {
    transform: scaleX(1);
}

.download-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(46, 89, 144, 0.2);
    border-color: #2e5990;
}

/* Card Icon */
.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2e5990, #1a3a64);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.download-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(46, 89, 144, 0.4);
}

.card-icon i {
    font-size: 32px;
    color: white;
}

/* Card Content */
.card-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a3a64;
    margin-bottom: 10px;
    line-height: 1.4;
    min-height: 56px;
}

.card-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Download Button */
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #2e5990, #1a3a64);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    justify-content: center;
}

.download-btn:hover {
    background: linear-gradient(135deg, #1a3a64, #0d2340);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(46, 89, 144, 0.3);
}

.download-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.download-btn:hover i {
    transform: translateY(2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .downloads-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .committee-downloads-section {
        padding: 60px 0;
    }

    .downloads-title {
        font-size: 32px;
    }

    .downloads-subtitle {
        font-size: 16px;
    }

    .downloads-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .download-card {
        padding: 25px;
    }

    .card-content h3 {
        font-size: 18px;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .downloads-grid {
        grid-template-columns: 1fr;
    }

    .downloads-header .decoration-line {
        width: 50px;
    }

    .downloads-title {
        font-size: 28px;
    }
}
