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

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

.page-faq-deposit-withdrawal__hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #1a3a66 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero text */
    border-bottom: 3px solid #FFD700;
}

.page-faq-deposit-withdrawal__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    line-height: 1.2;
}

.page-faq-deposit-withdrawal__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #F0F0F0;
}

.page-faq-deposit-withdrawal__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    margin: 10px;
    font-size: 1.1em;
    cursor: pointer;
}

.page-faq-deposit-withdrawal__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A192F; /* Dark blue */
    border: 2px solid #FFD700;
}

.page-faq-deposit-withdrawal__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-2px);
}

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

.page-faq-deposit-withdrawal__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F; /* Dark blue */
    transform: translateY(-2px);
}

.page-faq-deposit-withdrawal__inline-link {
    color: #FFD700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-faq-deposit-withdrawal__inline-link:hover {
    color: #e6c200;
}

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

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

.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__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #F0F0F0;
    text-align: justify;
}

.page-faq-deposit-withdrawal__keyword {
    color: #FFD700;
    font-weight: bold;
}

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

.page-faq-deposit-withdrawal__feature-item {
    background-color: #1a2a47; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-faq-deposit-withdrawal__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7)); /* Gold glow */
}

.page-faq-deposit-withdrawal__feature-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-faq-deposit-withdrawal__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-faq-deposit-withdrawal__list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #F0F0F0;
}

.page-faq-deposit-withdrawal__list li::before {
    content: '•';
    color: #FFD700; /* Gold bullet */
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
}

.page-faq-deposit-withdrawal__list--styled li::before {
    content: '✓'; /* Checkmark for styled lists */
    color: #FFD700;
    font-weight: bold;
}

.page-faq-deposit-withdrawal__faq-accordion {
    margin-top: 40px;
}

.page-faq-deposit-withdrawal__faq-item {
    background-color: #1a2a47;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-faq-deposit-withdrawal__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    padding: 20px 30px;
    cursor: pointer;
    position: relative;
    margin: 0;
    background-color: #1a2a47;
    border-bottom: 1px solid #0A192F;
    transition: background-color 0.3s ease;
}

.page-faq-deposit-withdrawal__faq-question:hover {
    background-color: #2b3e60;
}

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

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

.page-faq-deposit-withdrawal__faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    color: #F0F0F0;
    background-color: #0A192F; /* Dark blue for answer background */
}

.page-faq-deposit-withdrawal__faq-item.active .page-faq-deposit-withdrawal__faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding: 20px 30px;
}

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

.page-faq-deposit-withdrawal__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-faq-deposit-withdrawal__image--full-width {
    width: 100%;
    object-fit: cover;
    max-height: 400px;
}

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

    .page-faq-deposit-withdrawal__hero-subtitle {
        font-size: 1.2em;
    }

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

    .page-faq-deposit-withdrawal__feature-grid {
        grid-template-columns: 1fr;
    }

    .page-faq-deposit-withdrawal__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

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

    .page-faq-deposit-withdrawal__hero-subtitle {
        font-size: 1em;
    }

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

    .page-faq-deposit-withdrawal__feature-title {
        font-size: 1.5em;
    }

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

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