/* style/download.css */

/* Base styles for the page-download scope */
.page-download {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background handled by shared.css */
}

/* Common container for content */
.page-download__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Headings */
.page-download h1,
.page-download h2,
.page-download h3 {
    color: #ffffff; /* Default for dark background */
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-download h1 {
    font-size: 2.8em;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-download h2 {
    font-size: 2.2em;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-download h3 {
    font-size: 1.5em;
    margin-top: 20px;
}

/* Paragraphs */
.page-download p {
    margin-bottom: 15px;
}

/* Sections */
.page-download__section {
    padding: 60px 0;
}

/* Color schemes for sections */
.page-download__dark-bg {
    background-color: #000000; /* Dark background */
    color: #ffffff; /* Light text */
}

.page-download__light-bg {
    background-color: #ffffff; /* Light background */
    color: #333333; /* Dark text */
}

/* Specific text color overrides for light sections */
.page-download__light-bg h1,
.page-download__light-bg h2,
.page-download__light-bg h3,
.page-download__light-bg p,
.page-download__light-bg li {
    color: #333333;
}

/* Hero Section */
.page-download__hero-section {
    position: relative;
    text-align: center;
    color: #ffffff;
    padding: 120px 20px 80px; /* Base padding, header offset handled by inline style */
    display: flex;
    align-items: center;
    min-height: 600px;
}

.page-download__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
}