.page-support {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    padding-bottom: 50px;
}

.page-support__hero-section {
    display: flex;
    flex-direction: column; /* Enforce image on top, text below */
    align-items: center;
    text-align: center;
    padding: 10px 20px 40px; /* Small top padding, not --header-offset */
    background-color: #F4F7FB; /* Use main background or a suitable accent */
    border-bottom: 1px solid #D6E2FF;
}

.page-support__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Max width for the image */
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-support__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.page-support__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 20px;
    font-size: clamp(2em, 4vw, 3em); /* Min 2em, preferred 4vw, max 3em */
}

.page-support__description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #1F2D3D; /* Text Main */
}

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

.page-support__btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
}

.page-support__btn--primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(47, 107, 255, 0.3);
}

.page-support__btn--primary:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    box-shadow: 0 6px 16px rgba(47, 107, 255, 0.4);
}

.page-support__btn--secondary {
    background-color: #FFFFFF; /* Card BG */
    color: #2F6BFF; /* Primary color */
    border: 1px solid #2F6BFF;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-support__btn--secondary:hover {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    border-color: #1F2D3D;
}

.page-support__btn--small {
    padding: 8px 20px;
    font-size: 0.9em;
}

.page-support__btn--center {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    max-width: fit-content;
}

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

.page-support__section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: #000000; /* Custom Color_1776249996415 */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-support__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #2F6BFF; /* Primary color */
    border-radius: 2px;
}

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

.page-support__contact-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #D6E2FF; /* Border */
}

.page-support__contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.page-support__contact-icon {
    width: 200px; /* Consistent with HTML width */
    height: auto;
    max-width: 100%; /* For mobile responsiveness */
    min-width: 200px; /* Ensure minimum display size */
    min-height: 150px; /* Ensure minimum display size based on 200x150 aspect */
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
}

.page-support__card-title {
    font-size: 1.5em;
    font-weight: 600;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
}

.page-support__card-text {
    font-size: 1em;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 25px;
}

.page-support__faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.page-support__faq-question {
    font-size: 1.3em;
    font-weight: 600;
    color: #2F6BFF; /* Primary color */
    margin-bottom: 10px;
    cursor: pointer;
}

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

.page-support__faq-question--active + .page-support__faq-answer {
    max-height: 200px; /* Adjust as needed for content length */
    padding-top: 10px;
}

.page-support__responsible-gaming {
    text-align: center;
    padding: 40px;
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border: 1px solid #D6E2FF; /* Border */
    margin-bottom: 80px; /* More space before footer */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-support__section-title {
        font-size: 2em;
    }
    .page-support__main-title {
        font-size: clamp(2em, 4.5vw, 2.5em); /* Slightly smaller max for tablets */
    }
}

@media (max-width: 768px) {
    .page-support__hero-section {
        padding: 10px 15px 30px;
    }
    .page-support__main-title {
        font-size: clamp(1.8em, 6vw, 2em); /* Smaller on mobile */
    }
    .page-support__description {
        font-size: 1em;
    }
    .page-support__hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .page-support__btn {
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .page-support__section {
        margin: 40px auto;
        padding: 0 15px;
    }
    .page-support__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-support__contact-grid {
        grid-template-columns: 1fr;
    }
    .page-support__contact-icon {
        width: 200px; /* Ensure minimum size is respected on mobile */
        height: auto;
    }
    .page-support__faq-question {
        font-size: 1.15em;
    }
    /* Ensure all images in content area are responsive and don't cause overflow */
    .page-support img {
        max-width: 100%;
        height: auto;
    }
}