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

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

.page-deposit-withdrawal-faq__hero {
    background: linear-gradient(135deg, #0A2463 0%, #3a5c9f 100%);
    color: #ffffff;
    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__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 40px;
}

.page-deposit-withdrawal-faq__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-deposit-withdrawal-faq__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-deposit-withdrawal-faq__hero-btn {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2463;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-deposit-withdrawal-faq__hero-btn:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

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

.page-deposit-withdrawal-faq__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-deposit-withdrawal-faq__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

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

.page-deposit-withdrawal-faq__section-title {
    font-size: 2.5em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-deposit-withdrawal-faq__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__subsection-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-deposit-withdrawal-faq__text {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #555;
}

.page-deposit-withdrawal-faq__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #555;
}

.page-deposit-withdrawal-faq__list li {
    margin-bottom: 10px;
}

.page-deposit-withdrawal-faq__faq-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

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

.page-deposit-withdrawal-faq__image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 20px auto 40px;
    display: block;
}

.page-deposit-withdrawal-faq__image--left {
    float: left;
    margin-right: 30px;
    margin-top: 0;
    margin-bottom: 20px;
}

.page-deposit-withdrawal-faq__image--right {
    float: right;
    margin-left: 30px;
    margin-top: 0;
    margin-bottom: 20px;
}

.page-deposit-withdrawal-faq__deposit-faq .page-deposit-withdrawal-faq__container,
.page-deposit-withdrawal-faq__withdrawal-faq .page-deposit-withdrawal-faq__container,
.page-deposit-withdrawal-faq__security-tips .page-deposit-withdrawal-faq__container,
.page-deposit-withdrawal-faq__support .page-deposit-withdrawal-faq__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.page-deposit-withdrawal-faq__btn {
    display: inline-block;
    background-color: #0A2463;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.page-deposit-withdrawal-faq__btn:hover {
    background-color: #FFD700;
    color: #0A2463;
}

.page-deposit-withdrawal-faq__cta {
    background: linear-gradient(135deg, #0A2463, #FFD700);
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.page-deposit-withdrawal-faq__cta-content {
    max-width: 900px;
}

.page-deposit-withdrawal-faq__cta-btn {
    display: inline-block;
    background-color: #0A2463;
    color: #FFD700;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    margin-top: 30px;
}

.page-deposit-withdrawal-faq__cta-btn:hover {
    background-color: #1a3d7a;
    transform: translateY(-5px);
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-deposit-withdrawal-faq__hero {
        flex-direction: row;
        text-align: left;
        padding: 100px 0;
    }

    .page-deposit-withdrawal-faq__hero-content {
        text-align: left;
        max-width: 50%;
        margin-left: 20px;
        margin-right: auto;
        margin-bottom: 0;
    }

    .page-deposit-withdrawal-faq__hero-title {
        font-size: 4em;
    }

    .page-deposit-withdrawal-faq__hero-description {
        font-size: 1.4em;
    }

    .page-deposit-withdrawal-faq__hero-image-wrapper {
        position: relative;
        flex: 1;
        height: auto;
        opacity: 1;
        background: none;
    }

    .page-deposit-withdrawal-faq__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        opacity: 0.2;
    }

    .page-deposit-withdrawal-faq__deposit-faq .page-deposit-withdrawal-faq__container,
    .page-deposit-withdrawal-faq__withdrawal-faq .page-deposit-withdrawal-faq__container,
    .page-deposit-withdrawal-faq__security-tips .page-deposit-withdrawal-faq__container,
    .page-deposit-withdrawal-faq__support .page-deposit-withdrawal-faq__container {
        grid-template-columns: 1fr 1fr;
    }

    .page-deposit-withdrawal-faq__image--left {
        float: none;
        margin-right: 0;
        grid-column: 1 / 2;
        grid-row: 1 / span 100; /* Span across many rows */
        align-self: start;
        position: sticky;
        top: 100px; /* Adjust as needed */
    }

    .page-deposit-withdrawal-faq__image--right {
        float: none;
        margin-left: 0;
        grid-column: 2 / 3;
        grid-row: 1 / span 100; /* Span across many rows */
        align-self: start;
        position: sticky;
        top: 100px; /* Adjust as needed */
    }

    .page-deposit-withdrawal-faq__deposit-faq .page-deposit-withdrawal-faq__faq-item:nth-child(even),
    .page-deposit-withdrawal-faq__security-tips .page-deposit-withdrawal-faq__faq-item:nth-child(even) {
        grid-column: 2 / 3;
    }

    .page-deposit-withdrawal-faq__deposit-faq .page-deposit-withdrawal-faq__faq-item:nth-child(odd),
    .page-deposit-withdrawal-faq__security-tips .page-deposit-withdrawal-faq__faq-item:nth-child(odd) {
        grid-column: 2 / 3;
    }

    .page-deposit-withdrawal-faq__withdrawal-faq .page-deposit-withdrawal-faq__faq-item:nth-child(even),
    .page-deposit-withdrawal-faq__support .page-deposit-withdrawal-faq__faq-item:nth-child(even) {
        grid-column: 1 / 2;
    }

    .page-deposit-withdrawal-faq__withdrawal-faq .page-deposit-withdrawal-faq__faq-item:nth-child(odd),
    .page-deposit-withdrawal-faq__support .page-deposit-withdrawal-faq__faq-item:nth-child(odd) {
        grid-column: 1 / 2;
    }

    .page-deposit-withdrawal-faq__deposit-faq .page-deposit-withdrawal-faq__image--left {
        grid-column: 1 / 2;
    }

    .page-deposit-withdrawal-faq__withdrawal-faq .page-deposit-withdrawal-faq__image--right {
        grid-column: 2 / 3;
    }

    .page-deposit-withdrawal-faq__security-tips .page-deposit-withdrawal-faq__image--left {
        grid-column: 1 / 2;
    }

    .page-deposit-withdrawal-faq__support .page-deposit-withdrawal-faq__image--right {
        grid-column: 2 / 3;
    }

    .page-deposit-withdrawal-faq__deposit-faq h2, .page-deposit-withdrawal-faq__withdrawal-faq h2, .page-deposit-withdrawal-faq__security-tips h2, .page-deposit-withdrawal-faq__support h2 {
        grid-column: 1 / -1; /* Make title span full width */
    }
}

@media (max-width: 767px) {
    .page-deposit-withdrawal-faq__hero-title {
        font-size: 2.2em;
    }
    .page-deposit-withdrawal-faq__hero-description {
        font-size: 1em;
    }
    .page-deposit-withdrawal-faq__section-title {
        font-size: 1.8em;
    }
    .page-deposit-withdrawal-faq__subsection-title {
        font-size: 1.4em;
    }
    .page-deposit-withdrawal-faq__text, .page-deposit-withdrawal-faq__list li {
        font-size: 0.95em;
    }
    .page-deposit-withdrawal-faq__image--left, .page-deposit-withdrawal-faq__image--right {
        float: none;
        margin: 20px auto;
    }
}