/* Downloads Page Styles */
.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb a {
    color: #006400;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .separator {
    margin: 0 10px;
    color: #6c757d;
}

.breadcrumb .current {
    color: #495057;
    font-weight: 600;
}

.downloads-main {
    padding: 3rem 0;
}

.downloads-main .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.downloads-main h1 {
    text-align: center;
    color: #006400;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.page-description {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.download-category {
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.download-category h2 {
    color: #006400;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
}

.downloads-grid {
    display: grid;
    gap: 1.5rem;
}

.download-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.download-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-color: #006400;
}

.download-icon {
    font-size: 2rem;
    color: #006400;
    margin-right: 1.5rem;
    min-width: 60px;
    text-align: center;
}

.download-info {
    flex: 1;
}

.download-info h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.download-info p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.download-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #999;
}

.download-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.download-btn {
    background: #006400;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.download-btn:hover {
    background: #004d00;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0,100,0,0.3);
}

.download-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, #006400, #004d00);
    border-radius: 12px;
    color: white;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.stat-item i {
    font-size: 2.5rem;
    opacity: 0.9;
}

.stat-info h3 {
    font-size: 2rem;
    margin-bottom: 0.2rem;
}

.stat-info p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .download-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .download-icon {
        margin-right: 0;
    }
    
    .download-meta {
        justify-content: center;
    }
    
    .download-stats {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stat-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .downloads-main {
        padding: 2rem 0;
    }
    
    .downloads-main h1 {
        font-size: 2rem;
    }
    
    .download-category {
        padding: 1rem;
    }
}