.page-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: var(--black-color); /* Inherit from shared, assumed dark */
}

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

/* Hero Section */
.page-support__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    background-color: #26A9E0; /* Primary brand color for hero background */
    color: #FFFFFF;
    text-align: center;
    overflow: hidden; /* For image positioning */
}

.page-support__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.page-support__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFFFFF;
}

.page-support__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.page-support__hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-support__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15; /* Subtly blend background image */
}

.page-support__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* General Sections */
.page-support__section-title {
    font-size: 2.5em;
    color: #26A9E0; /* Primary color for titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

.page-support__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #f0f0f0; /* Light grey for text on dark background */
}

.page-support__light-bg {
    background-color: #FFFFFF;
    color: #333333;
}

.page-support__light-bg .page-support__text-block {
    color: #333333;
}

.page-support__light-bg .page-support__section-title {
    color: #26A9E0;
}

.page-support__dark-bg {
    background-color: var(--black-color); /* Assumed dark from shared */
    color: #ffffff;
}

.page-support__dark-bg .page-support__section-title {
    color: #26A9E0; /* Primary color for titles, even on dark background, ensure contrast */
}

.page-support__dark-bg .page-support__text-block {
    color: #f0f0f0;
}