/* style/payment-methods-withdrawal-guide.css */

/* Base styles for the withdrawal guide page */
.page-payment-methods-withdrawal-guide {
    color: #ffffff; /* Light text for dark body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Space for fixed header */
}

/* Hero Section */
.page-payment-methods-withdrawal-guide__hero-section {
    position: relative;
    overflow: hidden;
    padding: 80px 20px 60px;
    background-color: #1A1A1A; /* Auxiliary dark background */
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.page-payment-methods-withdrawal-guide__hero-container {
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
}

.page-payment-methods-withdrawal-guide__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold accent for title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-payment-methods-withdrawal-guide__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-payment-methods-withdrawal-guide__hero-image {
    margin: 40px auto;
    max-width: 1000px; /* Max width for hero image container */
}

.page-payment-methods-withdrawal-guide__hero-image img {
    width: 100%; /* Image fills its container */
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    min-width: 200px; /* Enforce min size for content images */
    min-height: 200px; /* Enforce min size for content images */
}

.page-payment-methods-withdrawal-guide__hero-cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #1A1A1A; /* Dark text on gold */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-payment-methods-withdrawal-guide__hero-cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

/* Content Area */
.page-payment-methods-withdrawal-guide__content-area {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    background-color: rgba(26, 26, 26, 0.85); /* Slightly transparent dark background for content */
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    padding: 40px;
}

.page-payment-methods-withdrawal-guide__section-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 15px;
}

.page-payment-methods-withdrawal-guide__text-block {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #e0e0e0;
    line-height: 1.7;
}

/* Step List */
.page-payment-methods-withdrawal-guide__step-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-payment-methods-withdrawal-guide__list-item {
    background-color: rgba(40, 40, 40, 0.7);
    border-left: 5px solid #FFD700;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-payment-methods-withdrawal-guide__list-title {
    color: #FFD700;
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-payment-methods-withdrawal-guide__list-description {
    color: #cccccc;
    font-size: 1em;
    margin-bottom: 15px;
}

.page-payment-methods-withdrawal-guide__button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A1A1A;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.page-payment-methods-withdrawal-guide__button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

/* Image Gallery within content */
.page-payment-methods-withdrawal-guide__image-gallery {
    margin: 30px 0;
    text-align: center;
}

.page-payment-methods-withdrawal-guide__image-gallery img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Enforce min size for content images */
    min-height: 200px; /* Enforce min size for content images */
}

/* FAQ Section */
.page-payment-methods-withdrawal-guide__faq-item {
    background-color: rgba(40, 40, 40, 0.7);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-payment-methods-withdrawal-guide__faq-question {
    color: #FFD700;
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
}

.page-payment-methods-withdrawal-guide__faq-answer {
    color: #cccccc;
    font-size: 1em;
    line-height: 1.6;
    display: none; /* Hidden by default, toggled by JS */
}

/* Call to Action Section */
.page-payment-methods-withdrawal-guide__cta-section {
    background-color: #1A1A1A;
    padding: 50px 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
}

.page-payment-methods-withdrawal-guide__cta-title {
    color: #FFD700;
    font-size: 2.8em;
    margin-bottom: 20px;
}

.page-payment-methods-withdrawal-guide__cta-description {
    color: #e0e0e0;
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-payment-methods-withdrawal-guide__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A1A1A;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    margin: 0 10px 20px;
}

.page-payment-methods-withdrawal-guide__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-4px);
}

.page-payment-methods-withdrawal-guide__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    box-shadow: none;
}

.page-payment-methods-withdrawal-guide__cta-button--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-4px);
}


/* Responsive Design */
@media (max-width: 768px) {
    .page-payment-methods-withdrawal-guide__hero-section {
        padding: 60px 15px 40px;
        min-height: 400px;
    }

    .page-payment-methods-withdrawal-guide__hero-title {
        font-size: 2.5em;
    }

    .page-payment-methods-withdrawal-guide__hero-description {
        font-size: 1em;
    }

    .page-payment-methods-withdrawal-guide__hero-cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-payment-methods-withdrawal-guide__content-area {
        padding: 20px;
        margin: 20px auto;
    }

    .page-payment-methods-withdrawal-guide__section-title {
        font-size: 2em;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .page-payment-methods-withdrawal-guide__list-item {
        padding: 20px;
    }

    .page-payment-methods-withdrawal-guide__list-title {
        font-size: 1.5em;
    }

    .page-payment-methods-withdrawal-guide__faq-question {
        font-size: 1.2em;
    }

    .page-payment-methods-withdrawal-guide__cta-title {
        font-size: 2em;
    }

    .page-payment-methods-withdrawal-guide__cta-description {
        font-size: 1em;
    }

    .page-payment-methods-withdrawal-guide__cta-button {
        display: block;
        width: calc(100% - 20px); /* Account for margin */
        margin: 10px auto;
    }

    /* Mobile content image constraint */
    .page-payment-methods-withdrawal-guide img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-payment-methods-withdrawal-guide__hero-title {
        font-size: 2em;
    }

    .page-payment-methods-withdrawal-guide__section-title {
        font-size: 1.8em;
    }

    .page-payment-methods-withdrawal-guide__cta-title {
        font-size: 1.8em;
    }
}