/* style/faq-deposit-withdrawal.css */
.page-faq-deposit-withdrawal {
    font-family: 'Arial', sans-serif;
    color: #f5dcbd; /* Light text for dark background */
    background-color: #0A2342; /* Main background color */
}

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

.page-faq-deposit-withdrawal .hero-section {
    background: linear-gradient(135deg, #0A2342 0%, #1A3A60 100%);
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

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

.page-faq-deposit-withdrawal .hero-title .highlight {
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.page-faq-deposit-withdrawal .hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
    color: #E0E0E0;
}

.page-faq-deposit-withdrawal .hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-faq-deposit-withdrawal .btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-faq-deposit-withdrawal .btn-primary {
    background-color: #FFD700; /* Gold */
    color: #0A2342; /* Deep blue */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-faq-deposit-withdrawal .btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-faq-deposit-withdrawal .btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.2);
}

.page-faq-deposit-withdrawal .btn-secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-faq-deposit-withdrawal .btn-small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 5px;
}

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

.page-faq-deposit-withdrawal .section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
    position: relative;
    padding-bottom: 10px;
}

.page-faq-deposit-withdrawal .section-title .highlight {
    color: #FFFFFF;
}

.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 .faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-faq-deposit-withdrawal .faq-item {
    background-color: #1A3A60; /* Slightly lighter blue for FAQ items */
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-faq-deposit-withdrawal .faq-question {
    background-color: #1A3A60;
    color: #FFD700;
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-faq-deposit-withdrawal .faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: #FFD700;
}

.page-faq-deposit-withdrawal .faq-question .keyword {
    color: #FFFFFF;
}

.page-faq-deposit-withdrawal .faq-question:hover {
    background-color: #2A4C70;
}

.page-faq-deposit-withdrawal .faq-question[aria-expanded="true"] {
    background-color: #2A4C70;
    color: #FFFFFF;
}

.page-faq-deposit-withdrawal .faq-question[aria-expanded="true"] h3 {
    color: #FFFFFF;
}

.page-faq-deposit-withdrawal .faq-question .icon {
    font-size: 1.5em;
    transition: transform 0.3s ease;
    color: #FFD700;
}

.page-faq-deposit-withdrawal .faq-question[aria-expanded="true"] .icon {
    transform: rotate(45deg);
    color: #FFFFFF;
}

.page-faq-deposit-withdrawal .faq-answer {
    background-color: #0A2342;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    color: #E0E0E0;
    line-height: 1.7;
}

.page-faq-deposit-withdrawal .faq-answer[aria-hidden="false"] {
    max-height: 1000px; /* Adjust as needed for content */
    padding: 25px;
}

.page-faq-deposit-withdrawal .faq-answer p {
    margin-bottom: 15px;
    font-size: 1.05em;
}

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

.page-faq-deposit-withdrawal .faq-answer li {
    margin-bottom: 8px;
    font-size: 1.05em;
}

.page-faq-deposit-withdrawal .faq-answer a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-faq-deposit-withdrawal .faq-answer a:hover {
    text-decoration: underline;
}

.page-faq-deposit-withdrawal .faq-answer .keyword {
    color: #FFD700;
    font-weight: bold;
}

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

.page-faq-deposit-withdrawal .cta-bottom {
    text-align: center;
    padding: 40px 0;
    background-color: #1A3A60;
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-faq-deposit-withdrawal .cta-bottom p {
    font-size: 1.3em;
    color: #FFFFFF;
    margin-bottom: 30px;
    line-height: 1.5;
}

.page-faq-deposit-withdrawal .cta-bottom .btn {
    margin: 0 10px;
}

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

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

    .page-faq-deposit-withdrawal .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-faq-deposit-withdrawal .btn {
        width: 80%;
        max-width: 300px;
    }

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

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

    .page-faq-deposit-withdrawal .faq-question h3 {
        font-size: 1.1em;
    }

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

    .page-faq-deposit-withdrawal .faq-answer[aria-hidden="false"] {
        padding: 20px;
    }

    .page-faq-deposit-withdrawal .cta-bottom p {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-faq-deposit-withdrawal .hero-title {
        font-size: 2em;
    }

    .page-faq-deposit-withdrawal .hero-section {
        padding: 60px 0;
    }

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

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

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

    .page-faq-deposit-withdrawal .btn {
        width: 90%;
    }
}