.page-support {
    color: #333333; /* Dark text for light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Fixed header offset for main content */
.page-support__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    background-color: #000000; /* Main color for hero */
    color: #FFFFFF; /* Light text for dark background */
    text-align: center;
    position: relative;
    overflow: hidden; /* To contain the image */
}

.page-support__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.page-support__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background */
    z-index: 0;
    filter: none; /* Ensure no filters are applied */
}

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

.page-support__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FCBC45; /* Login button color for emphasis */
}

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

.page-support__hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.page-support__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-support__button--register {
    background-color: #FFFFFF; /* Register color */
    color: #000000;
}

.page-support__button--register:hover {
    background-color: #e0e0e0;
}

.page-support__button--login {
    background-color: #FCBC45; /* Login color */
    color: #000000;
}

.page-support__button--login:hover {
    background-color: #e6a73c;
}

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

.page-support__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 15px;
}

.page-support__section-subtitle {
    font-size: 1.1em;
    color: #555555;
    text-align: center;
    margin-bottom: 40px;
}

.page-support__faq-section,
.page-support__contact-section,
.page-support__responsible-gaming-section,
.page-support__quick-links-section {
    padding: 60px 0;
    background-color: #FFFFFF; /* Light background for content sections */
}

.page-support__faq-image,
.page-support__contact-image,
.page-support__responsible-gaming-image,
.page-support__quick-links-image {
    display: block;
    width: 100%;
    max-width: 600px; /* Example max-width, adjust as needed */
    height: auto;
    margin: 0 auto 40px auto;
    border-radius: 8px;
    object-fit: cover;
    filter: none; /* Ensure no filters are applied */
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px; /* Enforce minimum size for content images */
}

.page-support__faq-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.page-support__faq-item {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #FCBC45; /* Accent color */
}

.page-support__faq-question {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 10px;
    cursor: pointer; /* Indicate it's clickable for accordion */
}

.page-support__faq-answer {
    color: #555555;
    display: none; /* Hidden by default for accordion */
}

.page-support__faq-item--active .page-support__faq-answer {
    display: block;
}

.page-support__link {
    color: #FCBC45; /* Accent color for links */
    text-decoration: none;
    font-weight: bold;
}

.page-support__link:hover {
    text-decoration: underline;
}

.page-support__contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    text-align: center;
}

.page-support__contact-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 5px solid #000000; /* Accent color */
}

.page-support__contact-card-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 10px;
}

.page-support__contact-card-description {
    color: #555555;
    margin-bottom: 20px;
}

.page-support__button--livechat {
    background-color: #FCBC45;
    color: #000000;
}

.page-support__button--livechat:hover {
    background-color: #e6a73c;
}

.page-support__button--email {
    background-color: #000000;
    color: #FFFFFF;
}

.page-support__button--email:hover {
    background-color: #333333;
}

.page-support__button--resources {
    background-color: #555555;
    color: #FFFFFF;
}

.page-support__button--resources:hover {
    background-color: #777777;
}

.page-support__responsible-gaming-section {
    text-align: center;
    background-color: #f0f0f0; /* Slightly different background */
}

.page-support__button--learn-more {
    background-color: #000000;
    color: #FFFFFF;
    margin-top: 20px;
}

.page-support__button--learn-more:hover {
    background-color: #333333;
}

.page-support__links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.page-support__link-card {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: #000000;
    text-align: left;
    transition: transform 0.3s ease;
    border-right: 5px solid #000000; /* Accent color */
}

.page-support__link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-support__link-card-title {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 10px;
}

.page-support__link-card-description {
    color: #555555;
    font-size: 0.95em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-support__hero-title {
        font-size: 2.2em;
    }

    .page-support__hero-description {
        font-size: 1em;
    }

    .page-support__hero-actions {
        flex-direction: column;
    }

    .page-support__button {
        width: 100%;
    }

    .page-support__section-title {
        font-size: 2em;
    }

    .page-support__section-subtitle {
        font-size: 1em;
    }

    .page-support__faq-list,
    .page-support__contact-methods,
    .page-support__links-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile content area images must be responsive */
    .page-support__hero-image,
    .page-support__faq-image,
    .page-support__contact-image,
    .page-support__responsible-gaming-image,
    .page-support__quick-links-image {
        max-width: 100%;
        height: auto;
    }
}