/* style/beginner-guide-withdrawal.css */
.page-beginner-guide-withdrawal {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Light text on dark background */
    background-color: #0A1931; /* Deep blue main background */
    line-height: 1.6;
}

.page-beginner-guide-withdrawal .text-gold {
    color: #FFD700;
}

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

.page-beginner-guide-withdrawal__hero {
    background: linear-gradient(135deg, #0A1931, #2A3B5B);
    padding: 100px 0;
    text-align: center;
    border-bottom: 3px solid #FFD700;
}

.page-beginner-guide-withdrawal__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-weight: bold;
    line-height: 1.2;
}

.page-beginner-guide-withdrawal__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #E0E0E0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-beginner-guide-withdrawal__button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A1931;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-beginner-guide-withdrawal__button:hover {
    background-color: #E5C100;
    transform: translateY(-2px);
}

.page-beginner-guide-withdrawal__button--secondary {
    background-color: #0A1931;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-right: 15px;
}

.page-beginner-guide-withdrawal__button--secondary:hover {
    background-color: #1A2E4B;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.page-beginner-guide-withdrawal__section {
    padding: 60px 0;
    background-color: #0A1931;
}

.page-beginner-guide-withdrawal__section:nth-of-type(even) {
    background-color: #1A2E4B; /* Slightly lighter dark blue for contrast */
}

.page-beginner-guide-withdrawal__section-title {
    font-size: 2.5em;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-beginner-guide-withdrawal__section-description {
    font-size: 1.1em;
    color: #E0E0E0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.page-beginner-guide-withdrawal__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.page-beginner-guide-withdrawal__content-grid:nth-child(even) {
    flex-direction: row-reverse;
}

.page-beginner-guide-withdrawal__text-content {
    flex: 1;
    min-width: 300px;
}

.page-beginner-guide-withdrawal__text-content p {
    margin-bottom: 15px;
    color: #E0E0E0;
}

.page-beginner-guide-withdrawal__image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

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

.page-beginner-guide-withdrawal__sub-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-beginner-guide-withdrawal__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-beginner-guide-withdrawal__step-card {
    background-color: #1A2E4B;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #FFD70033;
}

.page-beginner-guide-withdrawal__step-card:hover {
    transform: translateY(-5px);
    background-color: #2A3B5B;
}

.page-beginner-guide-withdrawal__step-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 15px;
    display: block;
    position: absolute;
    top: 15px;
    left: 15px;
    opacity: 0.2;
}

.page-beginner-guide-withdrawal__step-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-beginner-guide-withdrawal__step-card p {
    color: #E0E0E0;
    font-size: 1em;
}

.page-beginner-guide-withdrawal__step-icon {
    width: 60px;
    height: 60px;
    margin-top: 20px;
    filter: brightness(1.2);
}

.page-beginner-guide-withdrawal__method-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-beginner-guide-withdrawal__method-list li {
    background-color: #1A2E4B;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #FFD70033;
}

.page-beginner-guide-withdrawal__method-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-beginner-guide-withdrawal__method-list p {
    color: #E0E0E0;
    margin-bottom: 15px;
}

.page-beginner-guide-withdrawal__method-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
}

.page-beginner-guide-withdrawal__checklist {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-beginner-guide-withdrawal__checklist li {
    background-color: #1A2E4B;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #FFD700;
}

.page-beginner-guide-withdrawal__check-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-beginner-guide-withdrawal__checklist p {
    color: #E0E0E0;
}

.page-beginner-guide-withdrawal__cta-wrapper {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background-color: #0A1931;
    border-radius: 10px;
    border: 1px solid #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.page-beginner-guide-withdrawal__cta-text {
    font-size: 1.5em;
    color: #FFFFFF;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-beginner-guide-withdrawal__faq {
    background-color: #1A2E4B;
}

.page-beginner-guide-withdrawal__faq-item {
    background-color: #0A1931;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border-left: 4px solid #FFD700;
}

.page-beginner-guide-withdrawal__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-beginner-guide-withdrawal__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

/* Optional: Add active state for accordion if JS is implemented */
/* .page-beginner-guide-withdrawal__faq-question.active::after { transform: rotate(45deg); } */

.page-beginner-guide-withdrawal__faq-answer {
    font-size: 1em;
    color: #E0E0E0;
    margin-top: 10px;
    /* display: none; */ /* Initially hidden, controlled by JS */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-beginner-guide-withdrawal__title {
        font-size: 2.5em;
    }
    .page-beginner-guide-withdrawal__subtitle {
        font-size: 1em;
    }
    .page-beginner-guide-withdrawal__section-title {
        font-size: 2em;
    }
    .page-beginner-guide-withdrawal__content-grid {
        flex-direction: column;
    }
    .page-beginner-guide-withdrawal__content-grid:nth-child(even) {
        flex-direction: column;
    }
    .page-beginner-guide-withdrawal__steps-grid, 
    .page-beginner-guide-withdrawal__method-list, 
    .page-beginner-guide-withdrawal__checklist {
        grid-template-columns: 1fr;
    }
    .page-beginner-guide-withdrawal__button--secondary {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .page-beginner-guide-withdrawal__cta-wrapper {
        padding: 30px 20px;
    }
    .page-beginner-guide-withdrawal__cta-text {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-beginner-guide-withdrawal__hero {
        padding: 60px 0;
    }
    .page-beginner-guide-withdrawal__title {
        font-size: 2em;
    }
    .page-beginner-guide-withdrawal__section-title {
        font-size: 1.8em;
    }
    .page-beginner-guide-withdrawal__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-beginner-guide-withdrawal__step-card, 
    .page-beginner-guide-withdrawal__method-list li, 
    .page-beginner-guide-withdrawal__checklist li, 
    .page-beginner-guide-withdrawal__faq-item {
        padding: 20px;
    }
}