/* style/download.css */
.page-download {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: var(--secondary-color, #FFFFFF); /* Body background from shared.css */
}

/* Fixed header spacing */
.page-download__hero-section {
    padding-top: var(--header-offset, 120px); /* Desktop and mobile */
}

.page-download__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-download__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    background-color: #26A9E0; /* Brand primary color for dark background */
    color: #ffffff; /* White text for dark background */
    text-align: center;
    overflow: hidden;
    padding-bottom: 60px; /* Add some padding bottom */
}

.page-download__hero-section .page-download__container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.page-download__hero-content {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.page-download__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.page-download__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-download__download-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: flex-start;
}