:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --button-login-color: #EA7C07;
    --background-color: #FFFFFF;
}

/* Base styles for the support page content */
.page-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark); /* Default text color for light background */
    background-color: var(--background-color); /* Matches body background */
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

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

.page-support__section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.page-support__dark-section {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-support__light-bg {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.page-support__section-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

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

/* Main Banner Section (similar to hero but not the homepage's specific hero) */
.page-support__main-banner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-color), #40B0E8); /* Gradient with brand color */
}

.page-support__main-banner-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row; /* Desktop: row layout */
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.page-support__main-banner-content {
    flex: 1;
    text-align: left;
    color: var(--text-light);
}

.page-support__main-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-support__intro-description {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-support__main-banner-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-support__main-banner-image img {
    width: 100%;
    height: auto;
    max-width: 800px; /* Max width for image in banner */
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* CTA Button Styles */
.page-support__cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.page-support__btn-primary {
    background: var(--button-login-color); /* Using login color for primary CTA */
    color: var(--text-light);
    border: 2px solid transparent;
}

.page-support__btn-primary:hover {
    background: #c76706; /* Darken on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-support__btn-secondary {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-support__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-support__btn-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.page-support__btn-link:hover {
    text-decoration: underline;
    color: #1e87b7; /* Darken primary color */
}