/* style/faq-deposit-withdrawal.css */

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

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

.page-faq-deposit-withdrawal__hero {
    background: linear-gradient(135deg, #0047AB, #002880); /* Deeper blue for hero */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-faq-deposit-withdrawal__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
}

.page-faq-deposit-withdrawal__hero-title .highlight {
    color: #FFD700;
}

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

.page-faq-deposit-withdrawal__hero-btn {
    display: inline-block;
    background-color: #FFD700;
    color: #0047AB;
    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;
    border: none;
    cursor: pointer;
}

.page-faq-deposit-withdrawal__hero-btn:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-faq-deposit-withdrawal__faq-section {
    padding: 60px 0;
    background-color: #fff;
}

.page-faq-deposit-withdrawal__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 50px;
    color: #0047AB;
    font-weight: bold;
}

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

.page-faq-deposit-withdrawal__accordion {
    max-width: 900px;
    margin: 0 auto;
}

.page-faq-deposit-withdrawal__accordion-item {
    background-color: #f2f7fc; /* Lighter blue variant */
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-faq-deposit-withdrawal__accordion-header {
    width: 100%;
    background-color: #0047AB;
    color: #fff;
    padding: 18px 25px;
    text-align: left;
    font-size: 1.2em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.page-faq-deposit-withdrawal__accordion-header:hover {
    background-color: #003a8a;
}

.page-faq-deposit-withdrawal__accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #ffffff;
    color: #444;
}

.page-faq-deposit-withdrawal__accordion-content.active {
    max-height: 500px; /* Adjust based on expected content height */
    padding: 25px;
}

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

.page-faq-deposit-withdrawal__cta-section {
    background-color: #0047AB;
    color: #fff;
    padding: 70px 0;
    text-align: center;
}

.page-faq-deposit-withdrawal__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
}

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

.page-faq-deposit-withdrawal__cta-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-faq-deposit-withdrawal__btn {
    display: inline-block;
    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, color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-faq-deposit-withdrawal__btn.primary-btn {
    background-color: #FFD700;
    color: #0047AB;
}

.page-faq-deposit-withdrawal__btn.primary-btn:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

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

.page-faq-deposit-withdrawal__btn.secondary-btn:hover {
    background-color: #FFD700;
    color: #0047AB;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-faq-deposit-withdrawal__hero-title {
        font-size: 2.5em;
    }
    .page-faq-deposit-withdrawal__section-title,
    .page-faq-deposit-withdrawal__cta-title {
        font-size: 2em;
    }
    .page-faq-deposit-withdrawal__hero-description,
    .page-faq-deposit-withdrawal__cta-description {
        font-size: 1em;
    }
    .page-faq-deposit-withdrawal__accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-faq-deposit-withdrawal__accordion-content {
        padding: 20px;
    }
    .page-faq-deposit-withdrawal__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-faq-deposit-withdrawal__btn {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-faq-deposit-withdrawal__hero-title {
        font-size: 2em;
    }
    .page-faq-deposit-withdrawal__section-title,
    .page-faq-deposit-withdrawal__cta-title {
        font-size: 1.8em;
    }
    .page-faq-deposit-withdrawal__hero,
    .page-faq-deposit-withdrawal__faq-section,
    .page-faq-deposit-withdrawal__cta-section {
        padding: 40px 0;
    }
    .page-faq-deposit-withdrawal__hero-btn,
    .page-faq-deposit-withdrawal__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}