/* support.css */

.page-support {
    background-color: #F4F7FB; /* Background color */
    color: #1F2D3D; /* Text Main color */
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

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

/* Hero Section */
.page-support__hero-section {
    position: relative;
    overflow: hidden;
    background-color: #2F6BFF; /* Primary color as fallback */
    padding: 10px 0 40px; /* Small top padding, more bottom padding to separate from image */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
}

.page-support__hero-image {
    width: 100%;
    height: auto;
    max-width: 1920px; /* Max width for the image */
    display: block;
    margin-bottom: 20px; /* Space between image and content */
}

.page-support__hero-content {
    position: relative; /* Ensure content is above image if any overlap */
    z-index: 10;
    padding: 0 20px;
    max-width: 900px;
}

.page-support__main-title {
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFFFF;
    /* No fixed font-size for h1, relying on weight and color */
}

.page-support__description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.page-support__cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    color: #FFFFFF;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
    font-weight: bold;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-support__cta-button:hover {
    opacity: 0.9;
}

/* Section Titles */
.page-support__section-title {
    font-size: 2.2rem;
    color: #000000; /* Custom Color_1776249996415 */
    text-align: center;
    margin-top: 50px;
    margin-bottom: 40px;
    font-weight: bold;
}

/* FAQ Section */
.page-support__faq-section {
    padding: 60px 0;
}

.page-support__faq-list {
    display: grid;
    gap: 20px;
}

.page-support__faq-item {
    background-color: #FFFFFF; /* Card BG color */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF; /* Border color */
}

.page-support__faq-question {
    font-size: 1.3rem;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
    font-weight: bold;
    cursor: pointer; /* Indicate clickable */
}

.page-support__faq-answer {
    font-size: 1rem;
    color: #1F2D3D; /* Text Main color */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

/* Contact Section */
.page-support__contact-section {
    padding: 60px 0;
    text-align: center;
}

.page-support__contact-description {
    font-size: 1.1rem;
    color: #1F2D3D; /* Text Main color */
    margin-bottom: 40px;
}

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

.page-support__contact-method {
    background-color: #FFFFFF; /* Card BG color */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF; /* Border color */
}

.page-support__method-title {
    font-size: 1.4rem;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-support__method-text {
    font-size: 1rem;
    color: #1F2D3D; /* Text Main color */
    margin-bottom: 25px;
}

.page-support__contact-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    color: #FFFFFF;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
    font-weight: bold;
    transition: opacity 0.3s ease;
}

.page-support__contact-button:hover {
    opacity: 0.9;
}

/* Responsible Gaming Section */
.page-support__responsible-gaming-section {
    padding: 40px 0 60px;
    text-align: center;
    background-color: #F4F7FB; /* Background color */
}

.page-support__responsible-gaming-text {
    font-size: 1rem;
    color: #1F2D3D; /* Text Main color */
    max-width: 800px;
    margin: 0 auto;
}

.page-support__link {
    color: #2F6BFF; /* Primary color for links */
    text-decoration: underline;
    font-weight: bold;
}

.page-support__link:hover {
    color: #6FA3FF; /* Secondary color on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-support__container {
        padding: 15px;
    }

    .page-support__hero-section {
        padding: 10px 0 30px;
    }

    .page-support__main-title {
        font-size: 1.8rem;
    }

    .page-support__description {
        font-size: 1rem;
    }

    .page-support__section-title {
        font-size: 1.8rem;
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .page-support__faq-question {
        font-size: 1.1rem;
    }

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

    /* Mobile image overflow prevention */
    .page-support img {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure content area images are never smaller than 200px */
.page-support img:not(.page-support__hero-image) {
    min-width: 200px; /* Enforce minimum width */
    min-height: 200px; /* Enforce minimum height */
    object-fit: cover; /* Ensure images fill their space without distortion */
}