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

.page-faq-deposit-withdrawal__hero-section {
    display: flex;
    flex-direction: column; /* Ensure image is above text */
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
    background: linear-gradient(180deg, #6FA3FF 0%, #2F6BFF 100%); /* Blend of primary and secondary for hero background */
    padding-top: 10px; /* Small top padding as per rule */
}

.page-faq-deposit-withdrawal__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 12px;
}

.page-faq-deposit-withdrawal__hero-image {
    width: 100%;
    height: auto;
    display: block;
    min-width: 200px; /* Min size */
    min-height: 200px; /* Min size */
    object-fit: cover;
}

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

.page-faq-deposit-withdrawal__main-title {
    font-size: clamp(2em, 4vw, 2.8em); /* H1 size constraint */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFFFF;
    max-width: 100%; /* Ensure it doesn't overflow */
}

.page-faq-deposit-withdrawal__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #E0E0E0;
    max-width: 100%; /* Ensure it doesn't overflow */
}

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

.page-faq-deposit-withdrawal__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    min-width: 150px;
    text-align: center;
}

.page-faq-deposit-withdrawal__button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.page-faq-deposit-withdrawal__button--secondary {
    background: #6FA3FF; /* Auxiliary color for secondary button */
    border: 1px solid #D6E2FF;
}

.page-faq-deposit-withdrawal__button--secondary:hover {
    background: #A5C4FF; /* Glow color on hover */
}

.page-faq-deposit-withdrawal__content-section {
    padding: 40px 0;
}

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

.page-faq-deposit-withdrawal__section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: #2F6BFF; /* Primary color */
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
}

.page-faq-deposit-withdrawal__paragraph {
    font-size: 1.05em;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 30px;
    text-align: center;
}

.page-faq-deposit-withdrawal__faq-category {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF; /* Border */
}

.page-faq-deposit-withdrawal__category-title {
    font-size: 1.8em;
    font-weight: 600;
    color: #2F6BFF; /* Primary color */
    margin-bottom: 25px;
    border-bottom: 2px solid #D6E2FF; /* Border */
    padding-bottom: 15px;
    text-align: center;
}

.page-faq-deposit-withdrawal__faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #D6E2FF; /* Border */
}

.page-faq-deposit-withdrawal__faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-faq-deposit-withdrawal__question {
    font-size: 1.2em;
    font-weight: 600;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.page-faq-deposit-withdrawal__question.active::after {
    content: '-';
    transform: rotate(180deg);
}


.page-faq-deposit-withdrawal__answer {
    font-size: 1em;
    color: #1F2D3D; /* Text Main */
    padding-left: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding-top 0.3s ease-out;
    padding-top: 0;
}

.page-faq-deposit-withdrawal__answer.show {
    max-height: 200px; /* Adjust as needed for content */
    padding-top: 10px;
}

.page-faq-deposit-withdrawal__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-faq-deposit-withdrawal__image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Min size */
    min-height: 200px; /* Min size */
    object-fit: cover;
}

.page-faq-deposit-withdrawal__contact-promo {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF; /* Border */
    margin-top: 40px;
}

.page-faq-deposit-withdrawal__contact-title {
    font-size: 2em;
    font-weight: 700;
    color: #2F6BFF; /* Primary color */
    margin-bottom: 15px;
}

.page-faq-deposit-withdrawal__contact-description {
    font-size: 1.1em;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 30px;
}

.page-faq-deposit-withdrawal__button--promo {
    background: linear-gradient(180deg, #6FA3FF 0%, #A5C4FF 100%); /* Mix of auxiliary and glow for promo button */
    margin-left: 15px;
}

.page-faq-deposit-withdrawal__button--promo:hover {
    opacity: 0.9;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .page-faq-deposit-withdrawal__hero-section {
        padding-top: 8px; /* Slightly less padding on mobile */
        padding-bottom: 30px;
    }

    .page-faq-deposit-withdrawal__main-title {
        font-size: clamp(1.8em, 6vw, 2.2em);
    }

    .page-faq-deposit-withdrawal__description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-faq-deposit-withdrawal__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .page-faq-deposit-withdrawal__button {
        width: 80%;
        max-width: 250px;
        margin: 0 auto;
    }

    .page-faq-deposit-withdrawal__button--promo {
        margin-left: 0; /* Remove margin on mobile */
    }

    .page-faq-deposit-withdrawal__section-title {
        font-size: 1.8em;
    }

    .page-faq-deposit-withdrawal__category-title {
        font-size: 1.5em;
    }

    .page-faq-deposit-withdrawal__question {
        font-size: 1.1em;
    }

    .page-faq-deposit-withdrawal__answer {
        font-size: 0.95em;
    }

    .page-faq-deposit-withdrawal__faq-category {
        padding: 20px;
        margin-bottom: 30px;
    }

    .page-faq-deposit-withdrawal__contact-promo {
        padding: 30px 20px;
    }

    .page-faq-deposit-withdrawal__contact-title {
        font-size: 1.6em;
    }

    /* Ensure content images don't overflow */
    .page-faq-deposit-withdrawal__hero-image,
    .page-faq-deposit-withdrawal__image {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
}