/* style/deposit-withdrawal-faq-deposit-withdrawal.css */
.page-deposit-withdrawal-faq-deposit-withdrawal {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #0A192F; /* Main dark blue background */
    line-height: 1.6;
}

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

.page-deposit-withdrawal-faq-deposit-withdrawal__hero {
    background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-deposit-withdrawal-faq-deposit-withdrawal__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-deposit-withdrawal-faq-deposit-withdrawal__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    overflow: hidden;
}

.page-deposit-withdrawal-faq-deposit-withdrawal__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.page-deposit-withdrawal-faq-deposit-withdrawal__title {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: #FFD700; /* Gold accent */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-deposit-withdrawal-faq-deposit-withdrawal__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-deposit-withdrawal-faq-deposit-withdrawal__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark blue text on gold */
    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;
    border: none;
    cursor: pointer;
}

.page-deposit-withdrawal-faq-deposit-withdrawal__cta-button:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-3px);
}

.page-deposit-withdrawal-faq-deposit-withdrawal__cta-button--secondary {
    background-color: #1A3A60;
    color: #FFD700;
    border: 1px solid #FFD700;
    margin-top: 20px;
}

.page-deposit-withdrawal-faq-deposit-withdrawal__cta-button--secondary:hover {
    background-color: #2a4c70;
    color: #fff;
}

.page-deposit-withdrawal-faq-deposit-withdrawal__cta-button--outline {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 15px;
}

.page-deposit-withdrawal-faq-deposit-withdrawal__cta-button--outline:hover {
    background-color: #FFD700;
    color: #0A192F;
}

.page-deposit-withdrawal-faq-deposit-withdrawal__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-deposit-withdrawal-faq-deposit-withdrawal__section:last-of-type {
    border-bottom: none;
}

.page-deposit-withdrawal-faq-deposit-withdrawal__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold accent */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-deposit-withdrawal-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-deposit-withdrawal-faq-deposit-withdrawal__introduction p {
    font-size: 1.1em;
    text-align: justify;
    margin-bottom: 20px;
    color: #ccc;
}

.page-deposit-withdrawal-faq-deposit-withdrawal__faq-items {
    margin-top: 30px;
}

.page-deposit-withdrawal-faq-deposit-withdrawal__faq-item {
    background-color: #1A3A60; /* Slightly lighter dark blue */
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.page-deposit-withdrawal-faq-deposit-withdrawal__faq-item:hover {
    background-color: #2a4c70;
}

.page-deposit-withdrawal-faq-deposit-withdrawal__faq-question {
    display: block;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: #FFD700; /* Gold for questions */
    position: relative;
    user-select: none;
    transition: color 0.3s ease;
}

.page-deposit-withdrawal-faq-deposit-withdrawal__faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-deposit-withdrawal-faq-deposit-withdrawal__faq-item[open] .page-deposit-withdrawal-faq-deposit-withdrawal__faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(0deg);
}

.page-deposit-withdrawal-faq-deposit-withdrawal__faq-answer {
    padding: 0 25px 20px;
    font-size: 1.05em;
    color: #e0e0e0; /* Light gray for answers */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-deposit-withdrawal-faq-deposit-withdrawal__faq-answer ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 15px;
}

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

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

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

.page-deposit-withdrawal-faq-deposit-withdrawal__tip-item {
    background-color: #1A3A60;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-deposit-withdrawal-faq-deposit-withdrawal__tip-item:hover {
    transform: translateY(-5px);
    background-color: #2a4c70;
}

.page-deposit-withdrawal-faq-deposit-withdrawal__tip-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-deposit-withdrawal-faq-deposit-withdrawal__tip-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-deposit-withdrawal-faq-deposit-withdrawal__tip-item p {
    color: #ccc;
    font-size: 1em;
}

.page-deposit-withdrawal-faq-deposit-withdrawal__conclusion p {
    font-size: 1.1em;
    text-align: justify;
    margin-bottom: 20px;
    color: #ccc;
}

.page-deposit-withdrawal-faq-deposit-withdrawal__cta-group {
    text-align: center;
    margin-top: 40px;
}

.page-deposit-withdrawal-faq-deposit-withdrawal__conclusion-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto 0;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

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

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

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

    .page-deposit-withdrawal-faq-deposit-withdrawal__faq-question::after {
        right: 20px;
    }

    .page-deposit-withdrawal-faq-deposit-withdrawal__faq-answer {
        padding: 0 20px 18px;
        font-size: 1em;
    }

    .page-deposit-withdrawal-faq-deposit-withdrawal__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    
    .page-deposit-withdrawal-faq-deposit-withdrawal__cta-button--outline {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-deposit-withdrawal-faq-deposit-withdrawal__cta-group {
        flex-direction: column;
        align-items: center;
    }
}

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

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

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

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

    .page-deposit-withdrawal-faq-deposit-withdrawal__faq-question::after {
        right: 15px;
        font-size: 1.2em;
    }

    .page-deposit-withdrawal-faq-deposit-withdrawal__faq-answer {
        padding: 0 15px 15px;
        font-size: 0.95em;
    }

    .page-deposit-withdrawal-faq-deposit-withdrawal__cta-button {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .page-deposit-withdrawal-faq-deposit-withdrawal__cta-button--outline {
        margin-left: 0;
    }
}