/* style/faq-deposits-withdrawals.css */

:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-on-dark: #FFFFFF;
    --text-on-light: #333333;
    --background-dark: #0a0a0a;
    --button-login-color: #EA7C07;
}

.page-faq-deposits-withdrawals {
    color: var(--text-on-dark); /* Body background is dark, so text is light */
    background-color: var(--background-dark);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-faq-deposits-withdrawals__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure content is below header */
    background-color: var(--primary-color);
    color: var(--secondary-color);
    overflow: hidden;
}

.page-faq-deposits-withdrawals__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-faq-deposits-withdrawals__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.page-faq-deposits-withdrawals__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.page-faq-deposits-withdrawals__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-faq-deposits-withdrawals__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-faq-deposits-withdrawals__section {
    padding: 60px 20px;
    background-color: var(--background-dark);
    color: var(--text-on-dark);
}

.page-faq-deposits-withdrawals__why-trust {
    background-color: rgba(255, 255, 255, 0.05);
}

.page-faq-deposits-withdrawals__container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-faq-deposits-withdrawals__section-title {
    font-size: 2.2em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-faq-deposits-withdrawals__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.page-faq-deposits-withdrawals__section-intro {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.8);
}

.page-faq-deposits-withdrawals__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-faq-deposits-withdrawals__text-block {
    line-height: 1.8;
}

.page-faq-deposits-withdrawals__text-block p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.page-faq-deposits-withdrawals__image-wrapper {
    text-align: center;
}

.page-faq-deposits-withdrawals__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-faq-deposits-withdrawals__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-top: 40px;
}

.page-faq-deposits-withdrawals__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-faq-deposits-withdrawals__step-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.page-faq-deposits-withdrawals__step-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.page-faq-deposits-withdrawals__step-title {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-faq-deposits-withdrawals__step-card p {
    color: rgba(255, 255, 255, 0.7);
}

.page-faq-deposits-withdrawals__subsection-title {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-top: 50px;
    margin-bottom: 25px;
    text-align: center;
}

.page-faq-deposits-withdrawals__bullet-list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
}

.page-faq-deposits-withdrawals__bullet-list li {
    margin-bottom: 10px;
}

.page-faq-deposits-withdrawals__bullet-list strong {
    color: var(--primary-color);
}

.page-faq-deposits-withdrawals__faq-list {
    margin-top: 30px;
}

.page-faq-deposits-withdrawals__faq-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-faq-deposits-withdrawals__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.15);
    transition: background 0.3s ease;
}

.page-faq-deposits-withdrawals__faq-question:hover {
    background: rgba(255, 255, 255, 0.25);
}

.page-faq-deposits-withdrawals__faq-question h3 {
    color: var(--secondary-color);
    font-size: 1.2em;
    margin: 0;
}

.page-faq-deposits-withdrawals__faq-toggle {
    font-size: 1.8em;
    color: var(--primary-color);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.page-faq-deposits-withdrawals__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.page-faq-deposits-withdrawals__faq-item.active .page-faq-deposits-withdrawals__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 20px;
    padding-top: 0;
}

.page-faq-deposits-withdrawals__faq-item.active .page-faq-deposits-withdrawals__faq-toggle {
    transform: rotate(45deg);
}

.page-faq-deposits-withdrawals__security-tips .page-faq-deposits-withdrawals__bullet-list {
    list-style: none;
    padding-left: 0;
}

.page-faq-deposits-withdrawals__security-tips .page-faq-deposits-withdrawals__bullet-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.page-faq-deposits-withdrawals__security-tips .page-faq-deposits-withdrawals__bullet-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    top: 0;
}

.page-faq-deposits-withdrawals__final-note {
    text-align: center;
    font-style: italic;
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.6);
}

.page-faq-deposits-withdrawals__center-content {
    text-align: center;
}

.page-faq-deposits-withdrawals__contact-cta {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.page-faq-deposits-withdrawals__contact-cta .page-faq-deposits-withdrawals__section-title {
    color: var(--secondary-color);
}

.page-faq-deposits-withdrawals__contact-cta .page-faq-deposits-withdrawals__section-title::after {
    background-color: var(--secondary-color);
}

/* Buttons */
.page-faq-deposits-withdrawals__btn-primary,
.page-faq-deposits-withdrawals__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin: 10px;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-faq-deposits-withdrawals__btn-primary {
    background-color: var(--button-login-color); /* Using custom color for login/primary CTA */
    color: var(--secondary-color);
    border: 2px solid var(--button-login-color);
}

.page-faq-deposits-withdrawals__btn-primary:hover {
    background-color: darken(var(--button-login-color), 10%);
    border-color: darken(var(--button-login-color), 10%);
    transform: translateY(-2px);
}

.page-faq-deposits-withdrawals__btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-faq-deposits-withdrawals__btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.page-faq-deposits-withdrawals__text-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-faq-deposits-withdrawals__text-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-faq-deposits-withdrawals__hero-title {
        font-size: 2.5em;
    }
    .page-faq-deposits-withdrawals__section-title {
        font-size: 2em;
    }
    .page-faq-deposits-withdrawals__content-grid {
        grid-template-columns: 1fr;
    }
    .page-faq-deposits-withdrawals__image-wrapper {
        order: -1; /* Image first on smaller screens */
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-faq-deposits-withdrawals {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-faq-deposits-withdrawals__hero-section {
        padding: 60px 15px;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-faq-deposits-withdrawals__hero-title {
        font-size: 2em;
    }
    .page-faq-deposits-withdrawals__hero-description {
        font-size: 1em;
    }
    .page-faq-deposits-withdrawals__section {
        padding: 40px 15px;
    }
    .page-faq-deposits-withdrawals__section-title {
        font-size: 1.8em;
    }
    .page-faq-deposits-withdrawals__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-faq-deposits-withdrawals__faq-question h3 {
        font-size: 1.1em;
    }

    /* Image Responsive Adaption */
    .page-faq-deposits-withdrawals img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-faq-deposits-withdrawals__section,
    .page-faq-deposits-withdrawals__container,
    .page-faq-deposits-withdrawals__hero-section,
    .page-faq-deposits-withdrawals__step-card,
    .page-faq-deposits-withdrawals__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-faq-deposits-withdrawals__hero-content {
        padding-left: 0;
        padding-right: 0;
    }

    /* Button Responsive Adaption */
    .page-faq-deposits-withdrawals__btn-primary,
    .page-faq-deposits-withdrawals__btn-secondary,
    .page-faq-deposits-withdrawals a[class*="button"],
    .page-faq-deposits-withdrawals a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-left: 0;
        margin-right: 0;
    }
    .page-faq-deposits-withdrawals__center-content {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-faq-deposits-withdrawals__hero-title {
        font-size: 1.8em;
    }
    .page-faq-deposits-withdrawals__section-title {
        font-size: 1.6em;
    }
    .page-faq-deposits-withdrawals__btn-primary,
    .page-faq-deposits-withdrawals__btn-secondary {
        padding: 12px 20px;
        font-size: 1em;
    }
}