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

/* Base styles for the page content */
.page-payment-methods-withdrawal-guide {
    color: #ffffff; /* Dark body background #0a0a0a, so use light text */
    background-color: #0a0a0a; /* Ensure consistency with body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.page-payment-methods-withdrawal-guide__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
    box-sizing: border-box;
}

.page-payment-methods-withdrawal-guide__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 1;
}

.page-payment-methods-withdrawal-guide__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    color: #ffffff;
}

.page-payment-methods-withdrawal-guide__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #26A9E0; /* Brand color for main title */
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-payment-methods-withdrawal-guide__intro-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* Section common styles */
.page-payment-methods-withdrawal-guide__overview-section,
.page-payment-methods-withdrawal-guide__conditions-section,
.page-payment-methods-withdrawal-guide__methods-section,
.page-payment-methods-withdrawal-guide__guide-section,
.page-payment-methods-withdrawal-guide__processing-info-section,
.page-payment-methods-withdrawal-guide__important-notes-section,
.page-payment-methods-withdrawal-guide__faq-section,
.page-payment-methods-withdrawal-guide__cta-section {
    padding: 60px 20px;
    box-sizing: border-box;
}

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

.page-payment-methods-withdrawal-guide__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: #26A9E0; /* Brand color for section titles */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-payment-methods-withdrawal-guide__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #ffffff; /* Default for dark background sections */
}

/* Background colors for sections */
.page-payment-methods-withdrawal-guide__dark-bg {
    background-color: #0a0a0a;
    color: #ffffff;
}

.page-payment-methods-withdrawal-guide__light-bg {
    background-color: #1a1a1a; /* Slightly lighter dark for contrast */
    color: #ffffff;
}

/* Buttons */
.page-payment-methods-withdrawal-guide__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    max-width: 100%; /* For responsiveness */
    box-sizing: border-box; /* For responsiveness */
    white-space: normal; /* For responsiveness */
    word-wrap: break-word; /* For responsiveness */
}

.page-payment-methods-withdrawal-guide__btn-primary {
    background-color: #26A9E0; /* Brand primary color */
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-payment-methods-withdrawal-guide__btn-primary:hover {
    background-color: #1e87b8;
    transform: translateY(-2px);
}

.page-payment-methods-withdrawal-guide__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-payment-methods-withdrawal-guide__btn-secondary:hover {
    background-color: rgba(38, 169, 224, 0.1);
    transform: translateY(-2px);
}

.page-payment-methods-withdrawal-guide__cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    margin-top: 40px;
}

/* Video Section */
.page-payment-methods-withdrawal-guide__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    cursor: pointer; /* Indicate clickable video */
}

.page-payment-methods-withdrawal-guide__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lists */
.page-payment-methods-withdrawal-guide__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-payment-methods-withdrawal-guide__list-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-left: 5px solid #26A9E0;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-payment-methods-withdrawal-guide__list-title {
    color: #26A9E0;
    font-size: 1.4em;
    margin-bottom: 10px;
}

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

.page-payment-methods-withdrawal-guide__card {
    background-color: rgba(255, 255, 255, 0.08); /* White with transparency for dark background */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    text-align: center;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
}

.page-payment-methods-withdrawal-guide__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 100%; /* Ensure responsiveness */
    display: block;
}

.page-payment-methods-withdrawal-guide__card-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-payment-methods-withdrawal-guide__card-description {
    font-size: 1em;
    color: #f0f0f0;
    padding: 0 15px;
    flex-grow: 1; /* Make description take available space */
}

/* Step-by-Step Guide */
.page-payment-methods-withdrawal-guide__step-by-step {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-payment-methods-withdrawal-guide__step-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    text-align: center;
    padding-bottom: 20px;
    color: #ffffff;
}

.page-payment-methods-withdrawal-guide__step-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 100%; /* Ensure responsiveness */
    display: block;
}

.page-payment-methods-withdrawal-guide__step-title {
    font-size: 1.4em;
    color: #26A9E0;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-payment-methods-withdrawal-guide__step-description {
    font-size: 1em;
    color: #f0f0f0;
    padding: 0 15px;
}

/* Processing Info Grid */
.page-payment-methods-withdrawal-guide__info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.page-payment-methods-withdrawal-guide__info-title {
    font-size: 1.6em;
    color: #26A9E0;
    margin-bottom: 15px;
    text-align: center;
}

.page-payment-methods-withdrawal-guide__info-text {
    font-size: 1.1em;
    color: #f0f0f0;
}

.page-payment-methods-withdrawal-guide__info-text ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-top: 10px;
}

.page-payment-methods-withdrawal-guide__info-text li {
    margin-bottom: 5px;
    background-color: transparent; /* Override list-item background */
    border-left: none; /* Override list-item border */
    padding: 0; /* Override list-item padding */
    box-shadow: none; /* Override list-item shadow */
}

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

.page-payment-methods-withdrawal-guide__faq-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.page-payment-methods-withdrawal-guide__faq-item summary {
    list-style: none; /* Hide default marker */
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: #26A9E0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-payment-methods-withdrawal-guide__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-payment-methods-withdrawal-guide__faq-qtext {
    flex-grow: 1;
    color: #ffffff; /* Ensure question text is white */
}

.page-payment-methods-withdrawal-guide__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #26A9E0; /* Plus/minus icon color */
}

.page-payment-methods-withdrawal-guide__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1.1em;
    color: #f0f0f0;
    text-align: justify;
}

.page-payment-methods-withdrawal-guide__faq-answer p {
    margin-bottom: 0;
    color: #f0f0f0; /* Ensure paragraph text in FAQ is light */
}

/* Links within content */
.page-payment-methods-withdrawal-guide a {
    color: #26A9E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-payment-methods-withdrawal-guide a:hover {
    color: #1e87b8;
    text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-payment-methods-withdrawal-guide__main-title {
        font-size: 2.8em;
    }
    .page-payment-methods-withdrawal-guide__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-payment-methods-withdrawal-guide__hero-section {
        height: 500px;
        padding: 40px 15px;
        padding-top: var(--header-offset, 120px) !important; /* Mobile header offset */
    }
    .page-payment-methods-withdrawal-guide__main-title {
        font-size: 2.2em;
    }
    .page-payment-methods-withdrawal-guide__intro-text {
        font-size: 1em;
    }
    .page-payment-methods-withdrawal-guide__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-payment-methods-withdrawal-guide__paragraph {
        font-size: 1em;
    }

    /* Images responsiveness */
    .page-payment-methods-withdrawal-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    /* Video responsiveness */
    .page-payment-methods-withdrawal-guide video,
    .page-payment-methods-withdrawal-guide__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-payment-methods-withdrawal-guide__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    
    /* Button responsiveness */
    .page-payment-methods-withdrawal-guide__cta-button,
    .page-payment-methods-withdrawal-guide__btn-primary,
    .page-payment-methods-withdrawal-guide__btn-secondary,
    .page-payment-methods-withdrawal-guide a[class*="button"],
    .page-payment-methods-withdrawal-guide 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 !important; /* Reset margin for full width */
        margin-right: 0 !important; /* Reset margin for full width */
        margin-bottom: 15px; /* Add vertical spacing */
    }
    .page-payment-methods-withdrawal-guide__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        align-items: center;
        gap: 0; /* Remove gap when stacked */
    }
    .page-payment-methods-withdrawal-guide__cta-buttons .page-payment-methods-withdrawal-guide__cta-button:last-child {
        margin-bottom: 0;
    }

    /* Container padding for mobile */
    .page-payment-methods-withdrawal-guide__section,
    .page-payment-methods-withdrawal-guide__card,
    .page-payment-methods-withdrawal-guide__container,
    .page-payment-methods-withdrawal-guide__list-item,
    .page-payment-methods-withdrawal-guide__info-card,
    .page-payment-methods-withdrawal-guide__step-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Specific overrides for padding on sections that already have 20px side padding */
    .page-payment-methods-withdrawal-guide__overview-section,
    .page-payment-methods-withdrawal-guide__conditions-section,
    .page-payment-methods-withdrawal-guide__methods-section,
    .page-payment-methods-withdrawal-guide__guide-section,
    .page-payment-methods-withdrawal-guide__processing-info-section,
    .page-payment-methods-withdrawal-guide__important-notes-section,
    .page-payment-methods-withdrawal-guide__faq-section,
    .page-payment-methods-withdrawal-guide__cta-section {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Ensure no filter on images */
.page-payment-methods-withdrawal-guide img {
    filter: none !important;
}

/* Content area images CSS dimensions lower bound */
/* Any img inside .page-payment-methods-withdrawal-guide must not have display size less than 200px */
.page-payment-methods-withdrawal-guide img {
    min-width: 200px;
    min-height: 200px;
    /* The width/height attributes in HTML will define the aspect ratio and intended display size.
       CSS will make it responsive, but not shrink below 200px. */
}
/* Card images can have specific heights but must also respect min-width/height */
.page-payment-methods-withdrawal-guide__card-image,
.page-payment-methods-withdrawal-guide__step-image {
    min-width: 200px;
    min-height: 200px;
    height: 200px; /* Fixed height for consistency, if larger than 200px */
    object-fit: cover;
}

/* Override .page-payment-methods-withdrawal-guide p, li to ensure contrast */
.page-payment-methods-withdrawal-guide p,
.page-payment-methods-withdrawal-guide li {
    color: #f0f0f0; /* Use a slightly off-white for body text on dark background */
}
.page-payment-methods-withdrawal-guide__faq-answer p {
    color: #f0f0f0; /* Ensure paragraph text in FAQ is light */
}

/* Ensure all links within content areas have sufficient contrast */
.page-payment-methods-withdrawal-guide__paragraph a,
.page-payment-methods-withdrawal-guide__list-item a,
.page-payment-methods-withdrawal-guide__faq-answer a {
    color: #26A9E0; /* Brand color */
}

/* Ensure card content text is light on dark background */
.page-payment-methods-withdrawal-guide__card-description {
    color: #f0f0f0;
}