:root {
    --page-support-primary-color: #017439;
    --page-support-secondary-color: #FFFFFF;
    --page-support-accent-color-register: #C30808;
    --page-support-accent-color-login: #C30808;
    --page-support-text-color-register-login: #FFFF00;
    --page-support-text-dark: #333333;
    --page-support-text-light: #ffffff;
    --page-support-bg-light: #ffffff;
    --page-support-bg-dark: #017439; /* Using primary color as dark background for sections */
    --page-support-border-color: #e0e0e0;
}

.page-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--page-support-text-dark); /* Default text color for light body background */
    background-color: var(--page-support-bg-light); /* Default body background is white */
}

.page-support__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-support__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, assuming shared.css handles body padding-top */
    margin-bottom: 40px;
    text-align: center;
    overflow: hidden;
}

.page-support__hero-image {
    width: 100%;
    height: 500px; /* Fixed height for desktop */
    overflow: hidden;
    position: relative;
    margin-bottom: 20px; /* Space between image and content */
}

.page-support__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover for desktop, will change to contain for mobile */
    display: block;
}

.page-support__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    z-index: 1;
    position: relative; /* Ensure content is above any potential background elements */
}

.page-support__main-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive font size */
    color: var(--page-support-primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.page-support__hero-description {
    font-size: 1.1rem;
    color: var(--page-support-text-dark);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* General Section Titles & Intros */
.page-support__section-title {
    font-size: clamp(2rem, 3.5vw, 3rem); /* Responsive font size */
    color: var(--page-support-primary-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-support__dark-section .page-support__section-title {
    color: var(--page-support-secondary-color);
}

.page-support__section-intro {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-support-text-dark);
}

.page-support__dark-section .page-support__section-intro {
    color: var(--page-support-text-light);
}

.page-support__sub-title {
    font-size: 1.5rem;
    color: var(--page-support-primary-color);
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-support__dark-section .page-support__sub-title {
    color: var(--page-support-text-light);
}

/* CTA Buttons */
.page-support__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap; /* Allow wrapping for multiple buttons */
}