/* ============================================
   DOWNLOAD PAGE STYLES
   ============================================ */

.download-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

.download-header {
    text-align: center;
    margin-bottom: 50px;
}

.download-page-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #007BFF;
    text-transform: uppercase;
    margin: 0 0 15px;
}

.download-page-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.download-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.download-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.download-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.download-card-icon.catalog {
    background: #e3f2fd;
    color: #1976d2;
}

.download-card-icon.certificate {
    background: #fff3e0;
    color: #f57c00;
}

.download-card-content {
    flex: 1;
}

.download-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px;
}

.download-card-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 15px;
}

.download-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.download-card-meta span {
    font-size: 0.85rem;
    color: #999;
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 4px;
}

.download-card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: #007BFF;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.download-card-button:hover {
    background: #0056b3;
    color: #fff;
}

.download-cta {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
}

.download-cta p {
    font-size: 1.1rem;
    color: #666;
    margin: 0 0 20px;
}

.download-cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #007BFF;
    color: #007BFF;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.download-cta-button:hover {
    background: #007BFF;
    color: #fff;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .download-page-title {
        font-size: 2rem;
    }

    .download-grid {
        grid-template-columns: 1fr;
    }

    .download-card {
        padding: 25px;
    }
}