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

/* Base styles for the page content container */
.page-payment-methods-withdrawal-guide {
    color: #333333; /* Dark text for light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-payment-methods-withdrawal-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-payment-methods-withdrawal-guide__hero-section {
    position: relative;
    text-align: center;
    color: #FFFFFF; /* White text for hero overlay */
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Ensure image doesn't overflow */
    background: #000000; /* Dark background for contrast */
}

.page-payment-methods-withdrawal-guide__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.page-payment-methods-withdrawal-guide__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the area, crop if necessary */
    opacity: 0.4; /* Slightly dim the image to make text readable */
    filter: brightness(0.7); /* Darken image for text contrast, but not color filter */
    min-width: 200px; /* Enforce min-size rule */
    min-height: 200px; /* Enforce min-size rule */
}

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

.page-payment-methods-withdrawal-guide__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.page-payment-methods-withdrawal-guide__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #F0F0F0;
}

.page-payment-methods-withdrawal-guide__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-payment-methods-withdrawal-guide__hero-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 200px; /* Ensure buttons are not too small */
    text-align: center;
}

.page-payment-methods-withdrawal-guide__hero-button--primary {
    background-color: #FCBC45; /* Login color for primary action */
    color: #000000;
}

.page-payment-methods-withdrawal-guide__hero-button--primary:hover {
    background-color: #e0a53a;
}

.page-payment-methods-withdrawal-guide__hero-button--secondary {
    background-color: #FFFFFF; /* Register color for secondary action */
    color: #000000;
    border: 1px solid #FCBC45;
}

.page-payment-methods-withdrawal-guide__hero-button--secondary:hover {
    background-color: #f0f0f0;
}

/* General Section Styling */
.page-payment-methods-withdrawal-guide__introduction-section,
.page-payment-methods-withdrawal-guide__steps-section,
.page-payment-methods-withdrawal-guide__methods-section,
.page-payment-methods-withdrawal-guide__limits-fees-section,
.page-payment-methods-withdrawal-guide__verification-section,
.page-payment-methods-withdrawal-guide__troubleshooting-section,
.page-payment-methods-withdrawal-guide__tips-section,
.page-payment-methods-withdrawal-guide__security-section,
.page-payment-methods-withdrawal-guide__support-section,
.page-payment-methods-withdrawal-guide__faq-section,
.page-payment-methods-withdrawal-guide__cta-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-payment-methods-withdrawal-guide__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
}

.page-payment-methods-withdrawal-guide__section-text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333333;
    text-align: justify;
}

.page-payment-methods-withdrawal-guide__section-text a {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
}

.page-payment-methods-withdrawal-guide__section-text a:hover {
    text-decoration: underline;
}

.page-payment-methods-withdrawal-guide__sub-title {
    font-size: 1.8em;
    color: #000000;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-payment-methods-withdrawal-guide__bullet-list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #333333;
}

.page-payment-methods-withdrawal-guide__bullet-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-payment-methods-withdrawal-guide__bullet-list strong {
    color: #000000;
}

/* Steps Section */
.page-payment-methods-withdrawal-guide__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-payment-methods-withdrawal-guide__step-card {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.page-payment-methods-withdrawal-guide__step-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 15px;
}

.page-payment-methods-withdrawal-guide__step-description {
    color: #555555;
    font-size: 1em;
}

/* Image Wrapper */
.page-payment-methods-withdrawal-guide__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-payment-methods-withdrawal-guide__image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce min-size rule */
    min-height: 200px; /* Enforce min-size rule */
}

/* Methods Section */
.page-payment-methods-withdrawal-guide__methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-payment-methods-withdrawal-guide__method-card {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-payment-methods-withdrawal-guide__method-title {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 15px;
}

.page-payment-methods-withdrawal-guide__method-description {
    color: #555555;
    font-size: 1em;
}

/* Limits and Fees Section */
.page-payment-methods-withdrawal-guide__info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-payment-methods-withdrawal-guide__info-card {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-payment-methods-withdrawal-guide__info-title {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 15px;
}

.page-payment-methods-withdrawal-guide__info-description {
    color: #555555;
    font-size: 1em;
}

.page-payment-methods-withdrawal-guide__info-list {
    list-style: disc;
    margin-left: 20px;
    margin-top: 10px;
    color: #555555;
}

.page-payment-methods-withdrawal-guide__info-list li {
    margin-bottom: 5px;
}

/* Verification Section */
.page-payment-methods-withdrawal-guide__verification-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-payment-methods-withdrawal-guide__image-wrapper--left,
.page-payment-methods-withdrawal-guide__image-wrapper--right {
    flex: 1;
    min-width: 300px;
}

.page-payment-methods-withdrawal-guide__image-wrapper--left img,
.page-payment-methods-withdrawal-guide__image-wrapper--right img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-payment-methods-withdrawal-guide__verification-text {
    flex: 2;
    min-width: 300px;
}

.page-payment-methods-withdrawal-guide__button {
    display: inline-block;
    background-color: #FCBC45;
    color: #000000;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.page-payment-methods-withdrawal-guide__button:hover {
    background-color: #e0a53a;
}

/* Troubleshooting Section */
.page-payment-methods-withdrawal-guide__issue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-payment-methods-withdrawal-guide__issue-card {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-payment-methods-withdrawal-guide__issue-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 15px;
}

.page-payment-methods-withdrawal-guide__issue-description {
    color: #555555;
    font-size: 1em;
}

/* Tips Section */
.page-payment-methods-withdrawal-guide__tips-list {
    list-style: none;
    padding: 0;
}

.page-payment-methods-withdrawal-guide__tips-list li {
    background-color: #f8f8f8;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 5px solid #FCBC45;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    font-size: 1.1em;
    color: #333333;
}

.page-payment-methods-withdrawal-guide__tips-list li strong {
    color: #000000;
}

/* Security Section */
.page-payment-methods-withdrawal-guide__security-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-payment-methods-withdrawal-guide__security-text {
    flex: 2;
    min-width: 300px;
}

/* Support Section */
.page-payment-methods-withdrawal-guide__support-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-payment-methods-withdrawal-guide__support-card {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-payment-methods-withdrawal-guide__support-card-title {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 15px;
}

.page-payment-methods-withdrawal-guide__support-card-description {
    color: #555555;
    font-size: 1em;
    margin-bottom: 20px;
}

/* FAQ Section */
.page-payment-methods-withdrawal-guide__faq-items {
    margin-top: 40px;
}

.page-payment-methods-withdrawal-guide__faq-item {
    background-color: #f8f8f8;
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-payment-methods-withdrawal-guide__faq-question {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 10px;
    cursor: pointer;
}

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

/* CTA Section */
.page-payment-methods-withdrawal-guide__cta-section {
    text-align: center;
    background-color: #000000; /* Dark background for CTA */
    color: #FFFFFF;
    padding: 80px 20px;
}

.page-payment-methods-withdrawal-guide__cta-section .page-payment-methods-withdrawal-guide__section-title {
    color: #FFFFFF;
}

.page-payment-methods-withdrawal-guide__cta-section .page-payment-methods-withdrawal-guide__section-text {
    color: #F0F0F0;
    margin-bottom: 40px;
}

.page-payment-methods-withdrawal-guide__cta-section .page-payment-methods-withdrawal-guide__section-text a {
    color: #FCBC45;
}

.page-payment-methods-withdrawal-guide__cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-payment-methods-withdrawal-guide__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 200px;
    text-align: center;
}

.page-payment-methods-withdrawal-guide__cta-button--primary {
    background-color: #FCBC45;
    color: #000000;
}

.page-payment-methods-withdrawal-guide__cta-button--primary:hover {
    background-color: #e0a53a;
}

.page-payment-methods-withdrawal-guide__cta-button--secondary {
    background-color: #FFFFFF;
    color: #000000;
    border: 1px solid #FCBC45;
}

.page-payment-methods-withdrawal-guide__cta-button--secondary:hover {
    background-color: #f0f0f0;
}


/* Responsive Design */
@media (max-width: 992px) {
    .page-payment-methods-withdrawal-guide__hero-title {
        font-size: 2.5em;
    }
    .page-payment-methods-withdrawal-guide__section-title {
        font-size: 2em;
    }
    .page-payment-methods-withdrawal-guide__verification-content,
    .page-payment-methods-withdrawal-guide__security-content {
        flex-direction: column;
    }
    .page-payment-methods-withdrawal-guide__image-wrapper--left,
    .page-payment-methods-withdrawal-guide__image-wrapper--right {
        order: -1; /* Image first on smaller screens */
    }
}

@media (max-width: 768px) {
    .page-payment-methods-withdrawal-guide {
        padding-top: var(--header-offset, 80px); /* Adjust for potential smaller mobile header */
    }
    .page-payment-methods-withdrawal-guide__hero-section {
        padding: 60px 15px;
    }
    .page-payment-methods-withdrawal-guide__hero-title {
        font-size: 2em;
    }
    .page-payment-methods-withdrawal-guide__hero-description {
        font-size: 1em;
    }
    .page-payment-methods-withdrawal-guide__hero-actions,
    .page-payment-methods-withdrawal-guide__cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-payment-methods-withdrawal-guide__hero-button,
    .page-payment-methods-withdrawal-guide__cta-button {
        width: 100%;
        max-width: 300px; /* Constrain button width on mobile */
    }

    .page-payment-methods-withdrawal-guide__container {
        padding: 0 15px;
    }
    .page-payment-methods-withdrawal-guide__section-title {
        font-size: 1.8em;
    }
    .page-payment-methods-withdrawal-guide__section-text {
        font-size: 1em;
    }
    .page-payment-methods-withdrawal-guide__steps-grid,
    .page-payment-methods-withdrawal-guide__methods-grid,
    .page-payment-methods-withdrawal-guide__info-grid,
    .page-payment-methods-withdrawal-guide__issue-grid,
    .page-payment-methods-withdrawal-guide__support-cards {
        grid-template-columns: 1fr;
    }

    /* Crucial for mobile overflow prevention */
    .page-payment-methods-withdrawal-guide img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure images are not too small */
        min-height: 200px; /* Ensure images are not too small */
    }
}