:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --button-register-color: #C30808; /* Red for register */
    --button-login-color: #C30808; /* Red for login */
    --button-font-color: #FFFF00; /* Yellow for button text */
    --hover-darken-factor: 0.85; /* For simulating darken effect with opacity */
}

.page-resources-download-install {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark); /* Body background is light (white), so dark text */
    background-color: var(--secondary-color); /* Explicitly set for main content area */
}

/* Hero Section */
.page-resources-download-install__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    background: linear-gradient(135deg, var(--primary-color), #004d2a); /* Darker green gradient */
    color: var(--text-color-light); /* Light text on dark background */
}

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

.page-resources-download-install__hero-image {
    width: 100%;
    margin-bottom: 30px;
}