/* style/faq-deposit-withdrawal.css */
.page-faq-deposit-withdrawal {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-faq-deposit-withdrawal__hero {
    background: linear-gradient(135deg, #0056b3, #003366);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-faq-deposit-withdrawal__hero-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #ffd700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-faq-deposit-withdrawal__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #e0e0e0;
}

.page-faq-deposit-withdrawal__section {
    padding: 60px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

.page-faq-deposit-withdrawal__section:nth-of-type(even) {
    background-color: #f1f5f8;
}

.page-faq-deposit-withdrawal__section-title {
    font-size: 2.2em;
    color: #0056b3;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-faq-deposit-withdrawal__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffd700;
    border-radius: 2px;
}

.page-faq-deposit-withdrawal__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: -20px auto 50px auto;
    color: #555;
}

.page-faq-deposit-withdrawal__qa-block {
    background-color: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-faq-deposit-withdrawal__qa-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-faq-deposit-withdrawal__question {
    font-size: 1.4em;
    color: #0056b3;
    margin-top: 0;
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-faq-deposit-withdrawal__question::after {
    content: '+';
    font-size: 1.5em;
    color: #ffd700;
    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: #444;
    display: none;
    margin-top: 10px;
    padding-left: 20px;
    border-left: 3px solid #ffd700;
}

.page-faq-deposit-withdrawal__answer.active {
    display: block;
}

.page-faq-deposit-withdrawal__list {
    list-style-type: disc;
    padding-left: 40px;
    margin-bottom: 20px;
    color: #444;
}

.page-faq-deposit-withdrawal__list li {
    margin-bottom: 10px;
    font-size: 1em;
}

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

.page-faq-deposit-withdrawal__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-faq-deposit-withdrawal__image-caption {
    font-style: italic;
    color: #777;
    margin-top: 15px;
    font-size: 0.9em;
}

.page-faq-deposit-withdrawal__btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 20px;
    cursor: pointer;
}

.page-faq-deposit-withdrawal__btn--primary {
    background-color: #ffd700;
    color: #0056b3;
    border: 2px solid #ffd700;
}

.page-faq-deposit-withdrawal__btn--primary:hover {
    background-color: #ffc107;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-faq-deposit-withdrawal__btn--secondary {
    background-color: #0056b3;
    color: #ffffff;
    border: 2px solid #0056b3;
    margin-left: 15px;
}

.page-faq-deposit-withdrawal__btn--secondary:hover {
    background-color: #003d80;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-faq-deposit-withdrawal__cta {
    background: #0056b3;
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.page-faq-deposit-withdrawal__cta-title {
    font-size: 2.5em;
    color: #ffd700;
    margin-bottom: 20px;
}

.page-faq-deposit-withdrawal__cta-description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

.page-faq-deposit-withdrawal__cta-buttons .page-faq-deposit-withdrawal__btn {
    margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-faq-deposit-withdrawal__hero-title {
        font-size: 2em;
    }

    .page-faq-deposit-withdrawal__hero-description {
        font-size: 1em;
    }

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

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

    .page-faq-deposit-withdrawal__qa-block {
        padding: 20px;
    }

    .page-faq-deposit-withdrawal__btn {
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-faq-deposit-withdrawal__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-faq-deposit-withdrawal__cta-title {
        font-size: 2em;
    }

    .page-faq-deposit-withdrawal__cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .page-faq-deposit-withdrawal__cta-buttons .page-faq-deposit-withdrawal__btn {
        width: 80%;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .page-faq-deposit-withdrawal__hero {
        padding: 60px 0;
    }

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

    .page-faq-deposit-withdrawal__btn--primary, .page-faq-deposit-withdrawal__btn--secondary {
        display: block;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 15px;
    }
}