.page-support__hero-section {
    position: relative;
    overflow: hidden;
    background-color: #017439; /* Main color as fallback */
    padding-top: 10px; /* Small top padding */
    padding-bottom: 40px;
    display: flex;
    flex-direction: column; /* Ensure image then text */
    align-items: center;
    text-align: center;
}

.page-support__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 675px; /* Limit height on larger screens */
    margin-bottom: 20px; /* Space between image and content */
}

.page-support__hero-content {
    max-width: 900px;
    padding: 0 20px;
    color: #FFFFFF;
}

.page-support__main-title {
    color: #FFFFFF;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    /* No fixed font-size, relying on clamp from shared or default browser */
}

.page-support__hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-support__hero-cta {
    display: inline-block;
    padding: 12px 30px;
    background-color: #C30808; /* Register/Login color for CTA */
    color: #FFFF00; /* Register/Login font color */
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.page-support__hero-cta:hover {
    background-color: #a00606;
}

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

.page-support__section-title {
    color: #017439; /* Main color */
    font-size: 2.2em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

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

.page-support__contact-methods,
.page-support__faq-section,
.page-support__responsible-gaming,
.page-support__additional-resources {
    padding: 60px 0;
    background-color: #FFFFFF; /* Background color */
}

.page-support__contact-methods {
    background-color: #f8f8f8;
}

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

.page-support__method-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-support__method-icon {
    width: 300px; /* Base desktop width, >=200px */
    height: 200px; /* Base desktop height, >=200px */
    object-fit: contain;
    margin-bottom: 20px;
    max-width: 100%; /* Ensure responsiveness */
    display: block;
}

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

.page-support__method-text {
    color: #555555;
    line-height: 1.6;
    flex-grow: 1; /* Allow text to take up space */
    margin-bottom: 20px;
}

.page-support__method-cta {
    display: inline-block;
    padding: 10px 25px;
    background-color: #017439;
    color: #FFFFFF;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.page-support__method-cta:hover {
    background-color: #005a2e;
}

.page-support__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-support__faq-item {
    background-color: #f0f0f0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-support__faq-question {
    color: #017439;
    font-size: 1.25em;
    font-weight: 600;
    margin-bottom: 10px;
    cursor: pointer;
}

.page-support__faq-answer {
    color: #444444;
    line-height: 1.7;
    font-size: 1em;
}

.page-support__faq-answer--hidden {
    display: none;
}

.page-support__faq-question--active {
    color: #C30808; /* Highlight active question */
}

.page-support__responsible-gaming {
    background-color: #017439;
    color: #FFFFFF;
    text-align: center;
    padding: 50px 0;
}

.page-support__responsible-gaming .page-support__section-title {
    color: #FFFFFF;
}

.page-support__responsible-gaming .page-support__section-description {
    color: #FFFFFF;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-support__responsible-gaming-cta {
    display: inline-block;
    padding: 12px 30px;
    background-color: #C30808; /* Register/Login color for CTA */
    color: #FFFF00; /* Register/Login font color */
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.page-support__responsible-gaming-cta:hover {
    background-color: #a00606;
}

.page-support__additional-resources {
    background-color: #f8f8f8;
    text-align: center;
}

.page-support__resource-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-support__resource-list li a {
    color: #017439;
    text-decoration: none;
    font-size: 1.1em;
    padding: 10px 15px;
    border: 1px solid #017439;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.page-support__resource-list li a:hover {
    background-color: #017439;
    color: #FFFFFF;
}

/* Mobile responsiveness */
@media (max-width: 849px) {
    .page-support__hero-section {
        padding-bottom: 30px;
    }
    .page-support__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem); /* Clamp for H1 */
    }
    .page-support__hero-description {
        font-size: 1rem;
    }
    .page-support__section-title {
        font-size: 1.8em;
    }
    .page-support__methods-grid {
        grid-template-columns: 1fr;
    }
    .page-support__method-card {
        padding: 20px;
    }
    .page-support__resource-list {
        flex-direction: column;
        align-items: center;
    }
    .page-support__resource-list li a {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    /* Ensure images in content areas are responsive and don't overflow */
    .page-support__hero-image,
    .page-support__method-icon {
        width: 100%; /* Allow full width on mobile */
        height: auto; /* Maintain aspect ratio */
        min-width: unset; /* Remove desktop min-width constraint */
        min-height: unset; /* Remove desktop min-height constraint */
    }
}