.page-support {
    color: #333333; /* Dark text for light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing for desktop */
}

@media (max-width: 768px) {
    .page-support {
        padding-top: var(--header-offset, 120px); /* Fixed header spacing for mobile */
    }
}

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

.page-support__hero-section {
    position: relative;
    padding: 80px 0;
    text-align: center;
    overflow: hidden; /* Ensure image doesn't overflow */
    background-color: #000000; /* Dark background for hero section */
    color: #ffffff; /* Light text for dark background */
    min-height: 450px; /* Ensure hero section has a minimum height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-support__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle overlay for text readability */
    z-index: 1;
    min-width: 200px;
    min-height: 200px;
}

.page-support__hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.page-support__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-support__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #f0f0f0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.page-support__button {
    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;
    min-width: 200px; /* Ensure buttons are not too small */
    text-align: center;
    cursor: pointer;
}

.page-support__button--primary {
    background-color: #FCBC45; /* Login button color */
    color: #000000; /* Dark text for light button */
    border: 2px solid #FCBC45;
}

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

.page-support__button--secondary {
    background-color: #000000; /* Dark background for contrast */
    color: #FFFFFF; /* Register button color */
    border: 2px solid #FFFFFF;
}

.page-support__button--secondary:hover {
    background-color: #FFFFFF;
    color: #000000;
    border-color: #FCBC45;
}

.page-support__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
    min-width: 150px;
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

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

.page-support__why-choose-us,
.page-support__faq-section,
.page-support__contact-section,
.page-support__responsible-gambling,
.page-support__feedback-section,
.page-support__cta-final {
    padding: 60px 0;
    background-color: #FFFFFF; /* Light background for content sections */
}

.page-support__why-choose-us {
    background-color: #f8f8f8; /* Slightly off-white for visual separation */
}

.page-support__heading {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    color: #000000;
    font-weight: bold;
}

.page-support__sub-heading {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #555555;
}

.page-support__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-support__feature-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-support__feature-card:hover {
    transform: translateY(-5px);
}

.page-support__feature-icon {
    width: 200px; /* Minimum size requirement */
    height: 200px; /* Minimum size requirement */
    object-fit: contain;
    margin-bottom: 20px;
    filter: none; /* Ensure no filter is used */
}

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

.page-support__feature-description {
    color: #666666;
}

.page-support__faq-list {
    margin-top: 40px;
}

.page-support__faq-item {
    background-color: #fdfdfd;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.page-support__faq-question {
    padding: 20px;
    font-size: 1.2em;
    color: #000000;
    cursor: pointer;
    position: relative;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.page-support__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-support__faq-item.active .page-support__faq-question::after {
    transform: rotate(45deg);
}

.page-support__faq-answer {
    padding: 0 20px;
    color: #555555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-support__faq-item.active .page-support__faq-answer {
    max-height: 200px; /* Adjust as needed for content length */
    padding: 0 20px 20px 20px;
}

.page-support__faq-answer p {
    margin-bottom: 10px;
}

.page-support__faq-answer a {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
}

.page-support__faq-answer a:hover {
    text-decoration: underline;
}

.page-support__faq-cta {
    text-align: center;
    margin-top: 40px;
}

.page-support__faq-cta-text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333333;
}

.page-support__contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-support__contact-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-support__contact-card:hover {
    transform: translateY(-5px);
}

.page-support__contact-icon {
    width: 200px; /* Minimum size requirement */
    height: 200px; /* Minimum size requirement */
    object-fit: contain;
    margin-bottom: 20px;
    filter: none; /* Ensure no filter is used */
}

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

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

.page-support__email-link {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
}

.page-support__email-link:hover {
    text-decoration: underline;
}

.page-support__responsible-gambling {
    background-color: #000000; /* Dark background for responsible gambling section */
    color: #ffffff; /* Light text for dark background */
}

.page-support__responsible-gambling .page-support__heading,
.page-support__responsible-gambling .page-support__sub-heading {
    color: #ffffff;
}

.page-support__responsible-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-support__responsible-text {
    flex: 1;
}

.page-support__responsible-text p {
    margin-bottom: 20px;
    color: #f0f0f0;
}

.page-support__responsible-image-wrapper {
    flex: 1;
    text-align: center;
}

.page-support__responsible-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
    filter: none; /* Ensure no filter is used */
}

.page-support__feedback-section {
    background-color: #f8f8f8; /* Slightly off-white for visual separation */
}

.page-support__feedback-content {
    max-width: 800px;
    margin: 40px auto 0 auto;
    text-align: center;
}

.page-support__feedback-content p {
    margin-bottom: 20px;
    color: #555555;
}

.page-support__cta-final {
    text-align: center;
    background-color: #000000; /* Dark background for final CTA */
    color: #ffffff; /* Light text for dark background */
}

.page-support__cta-final .page-support__heading,
.page-support__cta-final .page-support__sub-heading {
    color: #ffffff;
}

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

/* Mobile responsiveness */
@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;
        gap: 15px;
    }

    .page-support__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .page-support__heading {
        font-size: 2em;
    }

    .page-support__sub-heading {
        font-size: 1em;
    }

    .page-support__features,
    .page-support__contact-methods {
        grid-template-columns: 1fr;
    }

    .page-support__responsible-content {
        flex-direction: column;
        text-align: center;
    }

    .page-support__responsible-image {
        margin-top: 30px;
    }

    .page-support__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    /* Ensure images do not overflow on mobile */
    .page-support img {
        max-width: 100%;
        height: auto;
    }
}

/* Content area images must not be smaller than 200px */
/* This rule applies to any img within .page-support, except for header/footer shared elements */
.page-support img:not(.shared-header img, .shared-footer img) {
    min-width: 200px;
    min-height: 200px;
    filter: none; /* Ensure no filter is used */
}