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

.page-deposit-withdrawal-faq__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-deposit-withdrawal-faq__hero {
    background: linear-gradient(135deg, #007bff 0%, #ffc107 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-deposit-withdrawal-faq__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    transform: rotate(45deg);
    opacity: 0.3;
}

.page-deposit-withdrawal-faq__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-deposit-withdrawal-faq__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-deposit-withdrawal-faq__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-deposit-withdrawal-faq__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-deposit-withdrawal-faq__btn--primary {
    background-color: #ffc107; /* Auxiliary color */
    color: #0056b3; /* Darker blue for contrast on gold */
    border: 2px solid #ffc107;
}

.page-deposit-withdrawal-faq__btn--primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.page-deposit-withdrawal-faq__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-deposit-withdrawal-faq__faq-section,
.page-deposit-withdrawal-faq__call-to-action {
    padding: 60px 0;
}

.page-deposit-withdrawal-faq__section-title {
    font-size: 2.2em;
    color: #007bff; /* Primary color */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-deposit-withdrawal-faq__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #ffc107; /* Auxiliary color */
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-deposit-withdrawal-faq__faq-item {
    background-color: #ffffff;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-deposit-withdrawal-faq__faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.page-deposit-withdrawal-faq__faq-question {
    font-size: 1.4em;
    color: #007bff; /* Primary color */
    padding: 20px 25px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #eaf5ff; /* Lighter blue for question background */
    border-bottom: 1px solid #d0e8ff;
}

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

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

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

.page-deposit-withdrawal-faq__faq-answer.open {
    max-height: 1000px; /* Adjust as needed for content */
    padding: 20px 25px;
}

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

.page-deposit-withdrawal-faq__faq-answer ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 0;
    color: #444;
}

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

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

.page-deposit-withdrawal-faq__call-to-action {
    background-color: #0056b3; /* Darker blue background */
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-deposit-withdrawal-faq__call-to-action .page-deposit-withdrawal-faq__section-title {
    color: #ffffff;
    margin-bottom: 20px;
}

.page-deposit-withdrawal-faq__call-to-action .page-deposit-withdrawal-faq__section-title::after {
    background-color: #ffc107;
}

.page-deposit-withdrawal-faq__call-to-action .page-deposit-withdrawal-faq__subtitle {
    color: #e0e0e0;
    font-size: 1.1em;
    margin-bottom: 40px;
}

.page-deposit-withdrawal-faq__call-to-action .page-deposit-withdrawal-faq__cta-buttons {
    margin-top: 0;
}

.page-deposit-withdrawal-faq__call-to-action .page-deposit-withdrawal-faq__btn--primary {
    background-color: #ffc107;
    color: #0056b3;
    border-color: #ffc107;
}

.page-deposit-withdrawal-faq__call-to-action .page-deposit-withdrawal-faq__btn--secondary {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.page-deposit-withdrawal-faq__cta-image {
    max-width: 80%;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-deposit-withdrawal-faq__title {
        font-size: 2.2em;
    }

    .page-deposit-withdrawal-faq__subtitle {
        font-size: 1em;
    }

    .page-deposit-withdrawal-faq__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-deposit-withdrawal-faq__btn {
        width: 100%;
        max-width: 300px;
    }

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

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

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

    .page-deposit-withdrawal-faq__hero,
    .page-deposit-withdrawal-faq__faq-section,
    .page-deposit-withdrawal-faq__call-to-action {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-deposit-withdrawal-faq__title {
        font-size: 1.8em;
    }

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

    .page-deposit-withdrawal-faq__faq-question {
        font-size: 1em;
    }
}