/* style/deposits-withdrawals-faq-deposit-withdrawal.css */
.page-deposits-withdrawals-faq-deposit-withdrawal {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text */
    background-color: #1A2C50; /* Main dark blue background */
    line-height: 1.6;
}

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

/* Hero Section */
.page-deposits-withdrawals-faq-deposit-withdrawal__hero {
    background: linear-gradient(135deg, #1A2C50 0%, #0D1A33 100%); /* Darker gradient for hero */
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-deposits-withdrawals-faq-deposit-withdrawal__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.page-deposits-withdrawals-faq-deposit-withdrawal__title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-deposits-withdrawals-faq-deposit-withdrawal__subtitle {
    font-size: 1.2em;
    color: #C0C0C0; /* Lighter gray for subtitle */
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-deposits-withdrawals-faq-deposit-withdrawal__hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    margin-top: 30px;
}

/* FAQ Section */
.page-deposits-withdrawals-faq-deposit-withdrawal__faq-section {
    padding: 60px 0;
    background-color: #1A2C50;
}

.page-deposits-withdrawals-faq-deposit-withdrawal__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-deposits-withdrawals-faq-deposit-withdrawal__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-deposits-withdrawals-faq-deposit-withdrawal__faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-deposits-withdrawals-faq-deposit-withdrawal__faq-item {
    background-color: #2A3C60; /* Slightly lighter dark blue for FAQ items */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.page-deposits-withdrawals-faq-deposit-withdrawal__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #2A3C60;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    transition: background-color 0.3s ease;
}

.page-deposits-withdrawals-faq-deposit-withdrawal__faq-question:hover {
    background-color: #3A4C70;
}

.page-deposits-withdrawals-faq-deposit-withdrawal__faq-question h3 {
    margin: 0;
    font-size: 1.3em;
    color: #FFD700;
    flex-grow: 1;
    text-align: left;
}

.page-deposits-withdrawals-faq-deposit-withdrawal__faq-icon {
    font-size: 1.8em;
    color: #FFD700;
    width: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-deposits-withdrawals-faq-deposit-withdrawal__faq-question.active .page-deposits-withdrawals-faq-deposit-withdrawal__faq-icon {
    transform: rotate(45deg); /* Plus to X for active state, but using text + / - here */
}

.page-deposits-withdrawals-faq-deposit-withdrawal__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 25px;
    background-color: #2A3C60;
}

.page-deposits-withdrawals-faq-deposit-withdrawal__faq-answer p {
    padding-bottom: 15px;
    color: #E0E0E0;
    font-size: 1.05em;
}

.page-deposits-withdrawals-faq-deposit-withdrawal__faq-answer ul,
.page-deposits-withdrawals-faq-deposit-withdrawal__faq-answer ol {
    margin-left: 20px;
    padding-bottom: 15px;
    color: #E0E0E0;
}

.page-deposits-withdrawals-faq-deposit-withdrawal__faq-answer li {
    margin-bottom: 8px;
}

.page-deposits-withdrawals-faq-deposit-withdrawal__faq-answer img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Call to Action Section */
.page-deposits-withdrawals-faq-deposit-withdrawal__cta-section {
    background-color: #1A2C50;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.page-deposits-withdrawals-faq-deposit-withdrawal__cta-section .page-deposits-withdrawals-faq-deposit-withdrawal__section-title {
    margin-bottom: 20px;
}

.page-deposits-withdrawals-faq-deposit-withdrawal__cta-section p {
    font-size: 1.1em;
    color: #C0C0C0;
    margin-bottom: 30px;
}

.page-deposits-withdrawals-faq-deposit-withdrawal__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2C50;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-deposits-withdrawals-faq-deposit-withdrawal__cta-button:hover {
    background-color: #FFC400;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-deposits-withdrawals-faq-deposit-withdrawal__title {
        font-size: 2.5em;
    }

    .page-deposits-withdrawals-faq-deposit-withdrawal__subtitle {
        font-size: 1em;
    }

    .page-deposits-withdrawals-faq-deposit-withdrawal__section-title {
        font-size: 2em;
    }

    .page-deposits-withdrawals-faq-deposit-withdrawal__faq-question h3 {
        font-size: 1.1em;
    }

    .page-deposits-withdrawals-faq-deposit-withdrawal__faq-question,
    .page-deposits-withdrawals-faq-deposit-withdrawal__faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-deposits-withdrawals-faq-deposit-withdrawal__title {
        font-size: 2em;
    }

    .page-deposits-withdrawals-faq-deposit-withdrawal__subtitle {
        font-size: 0.9em;
    }

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

    .page-deposits-withdrawals-faq-deposit-withdrawal__faq-question h3 {
        font-size: 1em;
    }

    .page-deposits-withdrawals-faq-deposit-withdrawal__faq-icon {
        font-size: 1.5em;
    }

    .page-deposits-withdrawals-faq-deposit-withdrawal__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}