/* style/download.css */

/* Base styles for the page content */
.page-download {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text on light background for contrast */
    background-color: #FFFFFF; /* Body background is white */
}

/* --- Hero Section --- */
.page-download__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(135deg, #017439, #017439 50%, #FFFFFF);
    color: #ffffff;
    padding-top: var(--header-offset, 120px);
}

.page-download__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-download__main-title {
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFFF00;
}

.page-download__intro-text {
    font-size: 18px;
    max-width: 800px;
    margin-bottom: 30px;
    color: #ffffff;
}

.page-download__download-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 700px;
}

.page-download__btn-primary,
.page-download__btn-secondary,
.page-download__btn-tertiary {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    flex-grow: 1;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-download__btn-primary {
    background: #C30808;
    color: #FFFF00;
    border: 2px solid #C30808;
}