/* style/download.css */
/* Custom CSS Variables based on provided color scheme */
:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg-color: #11271B;
    --background-color: #08160F;
    --text-main-color: #F2FFF6;
    --text-secondary-color: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
}

/* Ensure body background is dark and text is light as per custom colors */
body {
    background-color: var(--background-color, #08160F); /* Fallback to custom background color */
    color: var(--text-main-color, #F2FFF6); /* Fallback to custom main text color */
}

/* Base styles for the download page */
.page-download {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-main-color, #F2FFF6); /* Main text color */
    background-color: var(--background-color, #08160F); /* Background color */
}

/* Hero Section */
.page-download__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding as body handles --header-offset */
    background-color: var(--deep-green-color, #0A4B2C);
    overflow: hidden;
    text-align: center;
}

.page-download__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 30px;
}

.page-download__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-download__hero-content {
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}

.page-download__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive H1 font size with clamp */
    font-weight: 700;
    color: var(--text-main-color, #F2FFF6);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-download__description {
    font-size: 1.1rem;
    color: var(--text-secondary-color, #A7D9B8);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}