/* style/beginner-guide-deposit-withdrawal.css */

/* Base styles for the page */
.page-beginner-guide-deposit-withdrawal {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: var(--dark-bg-1); /* Body background from shared, will be dark */
}

/* Ensure main content area has light text on dark body background */
.page-beginner-guide-deposit-withdrawal__hero-section.page-beginner-guide-deposit-withdrawal__dark-bg,
.page-beginner-guide-deposit-withdrawal__section.page-beginner-guide-deposit-withdrawal__dark-bg {
    background-color: #26A9E0; /* Main brand color for dark sections */
    color: #ffffff; /* White text on dark brand color */
}

.page-beginner-guide-deposit-withdrawal__content-area.page-beginner-guide-deposit-withdrawal__light-bg,
.page-beginner-guide-deposit-withdrawal__section.page-beginner-guide-deposit-withdrawal__light-bg {
    background-color: #ffffff; /* White background for light sections */
    color: #333333; /* Dark text on white background */
}

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

.page-beginner-guide-deposit-withdrawal__hero-section {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-beginner-guide-deposit-withdrawal__main-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-deposit-withdrawal__intro-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-beginner-guide-deposit-withdrawal__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-beginner-guide-deposit-withdrawal__btn-primary,
.page-beginner-guide-deposit-withdrawal__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    box-sizing: border-box;
}

.page-beginner-guide-deposit-withdrawal__btn-primary {
    background-color: #EA7C07; /* Login color */
    color: #ffffff;
    border: 2px solid #EA7C07;
}

.page-beginner-guide-deposit-withdrawal__btn-primary:hover {
    background-color: #d16e06;
    border-color: #d16e06;
    transform: translateY(-2px);
}

.page-beginner-guide-deposit-withdrawal__btn-secondary {
    background-color: #ffffff;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-beginner-guide-deposit-withdrawal__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
    transform: translateY(-2px);
}

.page-beginner-guide-deposit-withdrawal__section {
    padding: 60px 20px;
}

.page-beginner-guide-deposit-withdrawal__section-title {
    font-size: 2.2em;
    margin-bottom: 30px;
    text-align: center;
}

.page-beginner-guide-deposit-withdrawal__dark-bg .page-beginner-guide-deposit-withdrawal__section-title {
    color: #ffffff;
}

.page-beginner-guide-deposit-withdrawal__light-bg .page-beginner-guide-deposit-withdrawal__section-title {
    color: #000000;
}

.page-beginner-guide-deposit-withdrawal__sub-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #26A9E0;
}

.page-beginner-guide-deposit-withdrawal__dark-bg .page-beginner-guide-deposit-withdrawal__sub-title {
    color: #ffffff;
}

.page-beginner-guide-deposit-withdrawal__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.7;
}

.page-beginner-guide-deposit-withdrawal__dark-bg .page-beginner-guide-deposit-withdrawal__paragraph {
    color: #f0f0f0;
}

.page-beginner-guide-deposit-withdrawal__list,
.page-beginner-guide-deposit-withdrawal__numbered-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-beginner-guide-deposit-withdrawal__list-item {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-size: 1.1em;
}

.page-beginner-guide-deposit-withdrawal__list-item::before {
    content: '•';
    color: #26A9E0;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1.5;
}

.page-beginner-guide-deposit-withdrawal__dark-bg .page-beginner-guide-deposit-withdrawal__list-item::before {
    color: #ffffff;
}

.page-beginner-guide-deposit-withdrawal__numbered-list .page-beginner-guide-deposit-withdrawal__list-item {
    counter-increment: list-counter;
}

.page-beginner-guide-deposit-withdrawal__numbered-list .page-beginner-guide-deposit-withdrawal__list-item::before {
    content: counter(list-counter) ". ";
    color: #26A9E0;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

.page-beginner-guide-deposit-withdrawal__dark-bg .page-beginner-guide-deposit-withdrawal__numbered-list .page-beginner-guide-deposit-withdrawal__list-item::before {
    color: #ffffff;
}

.page-beginner-guide-deposit-withdrawal__list-heading {
    font-size: 1.2em;
    color: #26A9E0;
    margin-bottom: 5px;
}

.page-beginner-guide-deposit-withdrawal__dark-bg .page-beginner-guide-deposit-withdrawal__list-heading {
    color: #ffffff;
}

.page-beginner-guide-deposit-withdrawal__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-beginner-guide-deposit-withdrawal__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: block; /* Ensures no extra space below image */
    margin: 0 auto;
}

/* FAQ Section */
.page-beginner-guide-deposit-withdrawal__faq-list {
    margin-top: 30px;
}

.page-beginner-guide-deposit-withdrawal__faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-beginner-guide-deposit-withdrawal__dark-bg .page-beginner-guide-deposit-withdrawal__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-deposit-withdrawal__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    color: #333333;
    transition: background-color 0.3s ease;
}

.page-beginner-guide-deposit-withdrawal__dark-bg .page-beginner-guide-deposit-withdrawal__faq-question {
    color: #ffffff;
}

.page-beginner-guide-deposit-withdrawal__faq-question:hover {
    background-color: #f0f0f0;
}

.page-beginner-guide-deposit-withdrawal__dark-bg .page-beginner-guide-deposit-withdrawal__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.page-beginner-guide-deposit-withdrawal__faq-title {
    margin: 0;
    color: inherit; /* Inherit color from parent for contrast */
}

.page-beginner-guide-deposit-withdrawal__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #26A9E0;
}

.page-beginner-guide-deposit-withdrawal__dark-bg .page-beginner-guide-deposit-withdrawal__faq-toggle {
    color: #ffffff;
}

.page-beginner-guide-deposit-withdrawal__faq-item.active .page-beginner-guide-deposit-withdrawal__faq-toggle {
    transform: rotate(45deg); /* Plus sign to X or minus sign */
}

.page-beginner-guide-deposit-withdrawal__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #555555;
}

.page-beginner-guide-deposit-withdrawal__dark-bg .page-beginner-guide-deposit-withdrawal__faq-answer {
    color: #cccccc;
}

.page-beginner-guide-deposit-withdrawal__faq-item.active .page-beginner-guide-deposit-withdrawal__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px 25px 25px;
}

.page-beginner-guide-deposit-withdrawal__faq-answer p {
    margin-bottom: 0;
}

/* Link styling for contrast */
.page-beginner-guide-deposit-withdrawal a {
    color: #26A9E0;
    text-decoration: none;
}

.page-beginner-guide-deposit-withdrawal a:hover {
    text-decoration: underline;
}

.page-beginner-guide-deposit-withdrawal__dark-bg a {
    color: #ffffff;
}

.page-beginner-guide-deposit-withdrawal__dark-bg a:hover {
    color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-beginner-guide-deposit-withdrawal__hero-section {
        padding: 60px 15px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
    }

    .page-beginner-guide-deposit-withdrawal__main-title {
        font-size: 2em;
    }

    .page-beginner-guide-deposit-withdrawal__intro-text {
        font-size: 1em;
    }

    .page-beginner-guide-deposit-withdrawal__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-beginner-guide-deposit-withdrawal__btn-primary,
    .page-beginner-guide-deposit-withdrawal__btn-secondary,
    .page-beginner-guide-deposit-withdrawal a[class*="button"],
    .page-beginner-guide-deposit-withdrawal a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-beginner-guide-deposit-withdrawal__section {
        padding: 40px 15px;
    }

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

    .page-beginner-guide-deposit-withdrawal__sub-title {
        font-size: 1.5em;
    }

    .page-beginner-guide-deposit-withdrawal__paragraph,
    .page-beginner-guide-deposit-withdrawal__list-item,
    .page-beginner-guide-deposit-withdrawal__list-heading,
    .page-beginner-guide-deposit-withdrawal__faq-question {
        font-size: 1em;
    }

    /* Mobile image responsiveness */
    .page-beginner-guide-deposit-withdrawal img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-beginner-guide-deposit-withdrawal__image-wrapper,
    .page-beginner-guide-deposit-withdrawal__container,
    .page-beginner-guide-deposit-withdrawal__section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-beginner-guide-deposit-withdrawal__faq-question,
    .page-beginner-guide-deposit-withdrawal__faq-answer {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-beginner-guide-deposit-withdrawal__faq-item.active .page-beginner-guide-deposit-withdrawal__faq-answer {
        padding: 15px 15px 25px;
    }
}