/* Download Page Styles */
.download-container {
    max-width: 800px;
    margin: 0 auto;
}

.download-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.download-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.download-card h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.version {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 20px;
}

.description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.download-features, .system-requirements {
    text-align: left;
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.download-features h3, .system-requirements h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.download-features ul, .system-requirements ul {
    list-style: none;
    padding: 0;
}

.download-features li, .system-requirements li {
    padding: 8px 0;
    color: var(--text-light);
}

.download-features i, .system-requirements i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.download-actions {
    margin-top: 30px;
}

.download-btn {
    font-size: 1.2rem;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 15px;
}

.download-note {
    color: var(--text-light);
    font-size: 0.9rem;
}

.installation-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    color: var(--text-color);
    margin-bottom: 15px;
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

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

@media (max-width: 768px) {
    .installation-steps {
        grid-template-columns: 1fr;
    }
    
    .download-card {
        padding: 30px 20px;
    }
}