/* style/download.css */
.page-download {
    color: #ffffff; /* Default text color for dark body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

.page-download__hero-section {
    background: linear-gradient(135deg, #26A9E0, #1a7bb5); /* Gradient using brand color */
    padding: 80px 0;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-download__hero-content {
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.page-download__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-download__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.page-download__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}