/* Download Page Styles */
#download {
    text-align: center;
    padding: 50px 0;
}

#download h1 {
    color: var(--color-primary);
    margin-bottom: 20px;
}

#download p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.download-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.download-option {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 250px;
}

.download-option:hover {
    transform: translateY(-5px);
}

.os-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    fill: var(--color-primary);
}

.download-option h2 {
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.download-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--color-primary);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: var(--color-secondary);
}

@media (max-width: 768px) {
    .download-options {
        flex-direction: column;
        align-items: center;
    }

    .download-option {
        width: 100%;
        max-width: 300px;
        margin-bottom: 20px;
    }
}

.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

html,
body {
    height: 100%;
    margin: 0;
}

main {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}