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

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

.page-faq-deposit-withdrawal__hero {
    background: linear-gradient(135deg, #0A2342, #1A3F6C);
    color: #fff;
    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 */
    font-weight: bold;
}

.page-faq-deposit-withdrawal__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-faq-deposit-withdrawal__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-faq-deposit-withdrawal__section-title {
    font-size: 2.2em;
    color: #0A2342;
    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__introduction p {
    font-size: 1.1em;
    margin-bottom: 15px;
    text-align: justify;
    color: #444;
}

.page-faq-deposit-withdrawal__faq-category {
    background-color: #fefefe;
}

.page-faq-deposit-withdrawal__faq-item {
    margin-bottom: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.page-faq-deposit-withdrawal__faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.page-faq-deposit-withdrawal__faq-question::after {
    content: '+';
    font-size: 1.2em;
    color: #FFD700;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

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

.page-faq-deposit-withdrawal__faq-answer {
    font-size: 1.05em;
    color: #555;
    padding-top: 10px;
    border-top: 1px solid #eee;
    display: none; /* Hidden by default */
}

.page-faq-deposit-withdrawal__faq-answer.active {
    display: block; /* Shown when active */
}

.page-faq-deposit-withdrawal__faq-answer p,
.page-faq-deposit-withdrawal__faq-answer ul,
.page-faq-deposit-withdrawal__faq-answer ol {
    margin-bottom: 15px;
}

.page-faq-deposit-withdrawal__faq-answer ul,
.page-faq-deposit-withdrawal__faq-answer ol {
    padding-left: 25px;
}

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

.page-faq-deposit-withdrawal__faq-answer a {
    color: #0A2342;
    text-decoration: underline;
    font-weight: bold;
}

.page-faq-deposit-withdrawal__faq-answer a:hover {
    color: #FFD700;
}

.page-faq-deposit-withdrawal__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.page-faq-deposit-withdrawal__btn--primary {
    background-color: #FFD700;
    color: #0A2342;
    border: 2px solid #FFD700;
}

.page-faq-deposit-withdrawal__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-faq-deposit-withdrawal__btn--secondary {
    background-color: #0A2342;
    color: #FFD700;
    border: 2px solid #0A2342;
    margin-left: 15px;
}

.page-faq-deposit-withdrawal__btn--secondary:hover {
    background-color: #1A3F6C;
    border-color: #1A3F6C;
    color: #fff;
}

.page-faq-deposit-withdrawal__tips .page-faq-deposit-withdrawal__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-faq-deposit-withdrawal__tip-item {
    background-color: #f0f4f8;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.page-faq-deposit-withdrawal__tip-item:hover {
    transform: translateY(-5px);
}

.page-faq-deposit-withdrawal__tip-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

.page-faq-deposit-withdrawal__tip-title {
    font-size: 1.3em;
    color: #0A2342;
    margin-bottom: 10px;
}

.page-faq-deposit-withdrawal__tip-item p {
    color: #666;
}

.page-faq-deposit-withdrawal__cta {
    background-color: #0A2342;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-faq-deposit-withdrawal__cta .page-faq-deposit-withdrawal__section-title {
    color: #FFD700;
}

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

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

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

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

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

.page-faq-deposit-withdrawal__image-wrapper--cta {
    margin-top: 60px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-faq-deposit-withdrawal__hero-title {
        font-size: 2.2em;
    }
    .page-faq-deposit-withdrawal__hero-subtitle {
        font-size: 1.1em;
    }
    .page-faq-deposit-withdrawal__section-title {
        font-size: 1.8em;
    }
    .page-faq-deposit-withdrawal__faq-question {
        font-size: 1.2em;
    }
    .page-faq-deposit-withdrawal__faq-answer {
        font-size: 1em;
    }
    .page-faq-deposit-withdrawal__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-faq-deposit-withdrawal__btn--secondary {
        margin-left: 10px;
    }
}

@media (max-width: 768px) {
    .page-faq-deposit-withdrawal__hero {
        padding: 60px 0;
    }
    .page-faq-deposit-withdrawal__hero-title {
        font-size: 1.8em;
    }
    .page-faq-deposit-withdrawal__section {
        padding: 40px 0;
    }
    .page-faq-deposit-withdrawal__section-title {
        font-size: 1.6em;
    }
    .page-faq-deposit-withdrawal__faq-item {
        padding: 20px;
    }
    .page-faq-deposit-withdrawal__faq-question {
        font-size: 1.1em;
    }
    .page-faq-deposit-withdrawal__grid {
        grid-template-columns: 1fr;
    }
    .page-faq-deposit-withdrawal__btn--secondary {
        margin-left: 0;
        margin-top: 10px;
    }
    .page-faq-deposit-withdrawal__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-faq-deposit-withdrawal__btn--primary, .page-faq-deposit-withdrawal__btn--secondary {
        width: 80%;
        margin-left: 0; /* Override margin-left for stacked buttons */
    }
}

@media (max-width: 480px) {
    .page-faq-deposit-withdrawal__hero-title {
        font-size: 1.5em;
    }
    .page-faq-deposit-withdrawal__hero-subtitle {
        font-size: 0.9em;
    }
    .page-faq-deposit-withdrawal__section-title {
        font-size: 1.4em;
    }
    .page-faq-deposit-withdrawal__faq-question {
        font-size: 1em;
    }
    .page-faq-deposit-withdrawal__faq-answer {
        font-size: 0.9em;
    }
    .page-faq-deposit-withdrawal__btn {
        padding: 8px 15px;
        font-size: 0.85em;
    }
}