.page-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default for light background sections */
    background-color: var(--dark-bg-1, #0d0d0d); /* Use shared dark background variable */
}

/* Ensure text in main content area is visible on body background */
.page-support__intro-section,
.page-support__guide-section,
.page-support__commitment-section,
.page-support__cta-final-section {
    background-color: #ffffff; /* Explicitly set light background for readability */
    color: #333333;
    padding: 60px 20px;
}

.page-support__channels-section,
.page-support__common-issues-section,
.page-support__faq-section {
    background-color: #26A9E0; /* Primary brand color for dark sections */
    color: #ffffff; /* White text for contrast */
    padding: 60px 20px;
}

.page-support__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Add padding for inner content */
    box-sizing: border-box;
}

/* Hero Section */
.page-support__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-support__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-support__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 2;
}

.page-support__hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    max-width: 800px;
    padding: 20px;
}

.page-support__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff; /* Ensure white for contrast */
}

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

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

.page-support__btn-primary,
.page-support__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure responsive */
    white-space: normal;
    word-wrap: break-word;
}