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

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

.page-faq-deposit-withdrawal-faq__hero {
    background-color: #1A2E44;
    color: #fff;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.page-faq-deposit-withdrawal-faq__hero-content {
    flex: 1;
    padding-left: 20px;
}

.page-faq-deposit-withdrawal-faq__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
    line-height: 1.2;
}

.page-faq-deposit-withdrawal-faq__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-faq-deposit-withdrawal-faq__hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-faq-deposit-withdrawal-faq__hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-faq-deposit-withdrawal-faq__section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-faq-deposit-withdrawal-faq__section--dark {
    background-color: #e8eef4;
}

.page-faq-deposit-withdrawal-faq__section-title {
    font-size: 2.5em;
    color: #1A2E44;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.page-faq-deposit-withdrawal-faq__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-faq__faq-list {
    display: grid;
    gap: 25px;
}

.page-faq-deposit-withdrawal-faq__faq-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #ddd;
}

.page-faq-deposit-withdrawal-faq__faq-question {
    font-size: 1.4em;
    color: #1A2E44;
    padding: 20px 25px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f0f4f7;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.page-faq-deposit-withdrawal-faq__faq-question:hover {
    background-color: #e0e7ed;
}

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

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

.page-faq-deposit-withdrawal-faq__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #ffffff;
    color: #555;
}

.page-faq-deposit-withdrawal-faq__faq-answer.active {
    max-height: 500px; /* Adjust based on content */
    padding: 20px 25px;
}

.page-faq-deposit-withdrawal-faq__faq-answer p {
    margin-bottom: 15px;
}

.page-faq-deposit-withdrawal-faq__faq-answer ul,
.page-faq-deposit-withdrawal-faq__faq-answer ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.page-faq-deposit-withdrawal-faq__faq-answer li {
    margin-bottom: 8px;
}

.page-faq-deposit-withdrawal-faq__faq-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-faq-deposit-withdrawal-faq__cta {
    background-color: #1A2E44;
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-faq-deposit-withdrawal-faq__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 1;
}

.page-faq-deposit-withdrawal-faq__cta .page-faq-deposit-withdrawal-faq__container {
    position: relative;
    z-index: 2;
}

.page-faq-deposit-withdrawal-faq__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-faq-deposit-withdrawal-faq__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

.page-faq-deposit-withdrawal-faq__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-faq-deposit-withdrawal-faq__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-faq-deposit-withdrawal-faq__btn--primary {
    background-color: #FFD700;
    color: #1A2E44;
    border: 2px solid #FFD700;
}

.page-faq-deposit-withdrawal-faq__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
}

.page-faq-deposit-withdrawal-faq__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-faq-deposit-withdrawal-faq__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2E44;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-faq-deposit-withdrawal-faq__hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 0;
    }

    .page-faq-deposit-withdrawal-faq__hero-content {
        padding-left: 0;
    }

    .page-faq-deposit-withdrawal-faq__hero-title {
        font-size: 2.5em;
    }

    .page-faq-deposit-withdrawal-faq__hero-subtitle {
        font-size: 1.1em;
    }

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

    .page-faq-deposit-withdrawal-faq__faq-question {
        font-size: 1.2em;
        padding: 18px 20px;
    }

    .page-faq-deposit-withdrawal-faq__faq-answer.active {
        padding: 15px 20px;
    }

    .page-faq-deposit-withdrawal-faq__cta-title {
        font-size: 2.2em;
    }

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

@media (max-width: 768px) {
    .page-faq-deposit-withdrawal-faq__hero {
        gap: 20px;
    }
    .page-faq-deposit-withdrawal-faq__hero-image img {
        width: 80%;
    }
    .page-faq-deposit-withdrawal-faq__section {
        padding: 40px 0;
    }
    .page-faq-deposit-withdrawal-faq__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-faq-deposit-withdrawal-faq__faq-list {
        gap: 15px;
    }
    .page-faq-deposit-withdrawal-faq__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-faq-deposit-withdrawal-faq__faq-answer.active {
        padding: 10px 15px;
    }
    .page-faq-deposit-withdrawal-faq__cta {
        padding: 60px 0;
    }
    .page-faq-deposit-withdrawal-faq__cta-title {
        font-size: 1.8em;
    }
    .page-faq-deposit-withdrawal-faq__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-faq-deposit-withdrawal-faq__btn {
        width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-faq-deposit-withdrawal-faq__hero-title {
        font-size: 2em;
    }
    .page-faq-deposit-withdrawal-faq__hero-subtitle {
        font-size: 0.9em;
    }
    .page-faq-deposit-withdrawal-faq__hero-image img {
        width: 90%;
    }
    .page-faq-deposit-withdrawal-faq__section-title {
        font-size: 1.5em;
    }
    .page-faq-deposit-withdrawal-faq__faq-question {
        font-size: 1em;
        padding: 12px;
    }
    .page-faq-deposit-withdrawal-faq__faq-answer.active {
        padding: 8px 12px;
    }
    .page-faq-deposit-withdrawal-faq__cta-title {
        font-size: 1.6em;
    }
    .page-faq-deposit-withdrawal-faq__cta-description {
        font-size: 0.9em;
    }
    .page-faq-deposit-withdrawal-faq__btn {
        font-size: 1em;
        padding: 12px 20px;
        width: 90%;
    }
}