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

:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --dark-bg-color: #121212;
    --light-text-color: #ffffff;
    --dark-text-color: #333333;
    --register-btn-bg: #C30808;
    --register-btn-text: #FFFF00;
    --login-btn-bg: #C30808;
    --login-btn-text: #FFFF00;
}

.page-payment-methods-withdrawal-guide {
    color: var(--light-text-color); /* Body is dark, so text should be light */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--dark-bg-color); /* Ensure consistency with body background */
}

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

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

.page-payment-methods-withdrawal-guide__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.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: 2;
}

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

.page-payment-methods-withdrawal-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--secondary-color);
}

.page-payment-methods-withdrawal-guide__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.page-payment-methods-withdrawal-guide__hero-cta-buttons,
.page-payment-methods-withdrawal-guide__cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-payment-methods-withdrawal-guide__btn-primary,
.page-payment-methods-withdrawal-guide__btn-secondary,
.page-payment-methods-withdrawal-guide__btn-register,
.page-payment-methods-withdrawal-guide__btn-login {
    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, border-color 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    box-sizing: border-box;
}

.page-payment-methods-withdrawal-guide__btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

.page-payment-methods-withdrawal-guide__btn-primary:hover {
    background-color: #005a2d;
    border-color: #005a2d;
}

.page-payment-methods-withdrawal-guide__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-payment-methods-withdrawal-guide__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.page-payment-methods-withdrawal-guide__btn-register,
.page-payment-methods-withdrawal-guide__btn-login {
    background-color: var(--register-btn-bg);
    color: var(--register-btn-text);
    border: 2px solid var(--register-btn-bg);
}

.page-payment-methods-withdrawal-guide__btn-register:hover,
.page-payment-methods-withdrawal-guide__btn-login:hover {
    background-color: #a00606;
    border-color: #a00606;
}

.page-payment-methods-withdrawal-guide__content-section {
    padding: 80px 0;
}

.page-payment-methods-withdrawal-guide__dark-bg {
    background-color: var(--dark-bg-color);
    color: var(--light-text-color);
}

.page-payment-methods-withdrawal-guide__light-bg {
    background-color: var(--secondary-color);
    color: var(--dark-text-color);
}

.page-payment-methods-withdrawal-guide__section-title,
.page-payment-methods-withdrawal-guide__cta-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    color: inherit; /* Inherit color from parent section */
}

.page-payment-methods-withdrawal-guide__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: inherit;
}

.page-payment-methods-withdrawal-guide__features-grid,
.page-payment-methods-withdrawal-guide__method-grid,
.page-payment-methods-withdrawal-guide__issues-grid,
.page-payment-methods-withdrawal-guide__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-payment-methods-withdrawal-guide__feature-card,
.page-payment-methods-withdrawal-guide__method-card,
.page-payment-methods-withdrawal-guide__issue-card,
.page-payment-methods-withdrawal-guide__tip-card {
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white on dark bg */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    color: var(--light-text-color);
}

.page-payment-methods-withdrawal-guide__light-bg .page-payment-methods-withdrawal-guide__feature-card,
.page-payment-methods-withdrawal-guide__light-bg .page-payment-methods-withdrawal-guide__method-card,
.page-payment-methods-withdrawal-guide__light-bg .page-payment-methods-withdrawal-guide__issue-card,
.page-payment-methods-withdrawal-guide__light-bg .page-payment-methods-withdrawal-guide__tip-card {
    background-color: var(--secondary-color);
    color: var(--dark-text-color);
    border: 1px solid #e0e0e0;
}

.page-payment-methods-withdrawal-guide__feature-title,
.page-payment-methods-withdrawal-guide__method-title,
.page-payment-methods-withdrawal-guide__issue-title,
.page-payment-methods-withdrawal-guide__tip-title,
.page-payment-methods-withdrawal-guide__notes-title,
.page-payment-methods-withdrawal-guide__contact-title,
.page-payment-methods-withdrawal-guide__step-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: bold;
    color: inherit;
}

.page-payment-methods-withdrawal-guide__feature-list,
.page-payment-methods-withdrawal-guide__method-details,
.page-payment-methods-withdrawal-guide__notes-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
    color: inherit;
}

.page-payment-methods-withdrawal-guide__feature-list li,
.page-payment-methods-withdrawal-guide__method-details li,
.page-payment-methods-withdrawal-guide__notes-list li {
    margin-bottom: 8px;
}

.page-payment-methods-withdrawal-guide__method-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-payment-methods-withdrawal-guide__steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-payment-methods-withdrawal-guide__step-card {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--light-text-color);
}

.page-payment-methods-withdrawal-guide__step-number {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 15px;
}

.page-payment-methods-withdrawal-guide__important-notes {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    margin-top: 50px;
    border-left: 5px solid var(--primary-color);
    color: var(--light-text-color);
}

.page-payment-methods-withdrawal-guide__contact-support {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: var(--light-text-color);
}

.page-payment-methods-withdrawal-guide__support-image {
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    display: block;
    border-radius: 8px;
}

.page-payment-methods-withdrawal-guide__faq-section {
    padding: 80px 0;
}

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

.page-payment-methods-withdrawal-guide__faq-item {
    background-color: var(--secondary-color);
    border: 1px solid #e0e0e0;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    color: var(--dark-text-color);
}

.page-payment-methods-withdrawal-guide__faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    background-color: #f9f9f9;
    color: var(--dark-text-color);
}

.page-payment-methods-withdrawal-guide__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-payment-methods-withdrawal-guide__faq-qtext {
    flex-grow: 1;
    color: var(--dark-text-color);
}

.page-payment-methods-withdrawal-guide__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    color: var(--primary-color);
}

.page-payment-methods-withdrawal-guide__faq-item[open] .page-payment-methods-withdrawal-guide__faq-toggle {
    content: "−";
}

.page-payment-methods-withdrawal-guide__faq-answer {
    padding: 20px 25px;
    border-top: 1px solid #e0e0e0;
    background-color: var(--secondary-color);
    color: var(--dark-text-color);
}

.page-payment-methods-withdrawal-guide__cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

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

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .page-payment-methods-withdrawal-guide__hero-title {
        font-size: 2.8em;
    }
    .page-payment-methods-withdrawal-guide__hero-description {
        font-size: 1.1em;
    }
    .page-payment-methods-withdrawal-guide__section-title,
    .page-payment-methods-withdrawal-guide__cta-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-payment-methods-withdrawal-guide__hero-section {
        height: 500px;
        padding-top: var(--header-offset, 120px) !important; /* Mobile fixed header offset */
    }
    .page-payment-methods-withdrawal-guide__hero-title {
        font-size: 2.2em;
    }
    .page-payment-methods-withdrawal-guide__hero-description {
        font-size: 1em;
    }
    .page-payment-methods-withdrawal-guide__content-section {
        padding: 60px 0;
    }
    .page-payment-methods-withdrawal-guide__section-title,
    .page-payment-methods-withdrawal-guide__cta-title {
        font-size: 1.8em;
    }
    .page-payment-methods-withdrawal-guide__text-block {
        font-size: 1em;
    }
    .page-payment-methods-withdrawal-guide__btn-primary,
    .page-payment-methods-withdrawal-guide__btn-secondary,
    .page-payment-methods-withdrawal-guide__btn-register,
    .page-payment-methods-withdrawal-guide__btn-login {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 0.95em;
    }
    .page-payment-methods-withdrawal-guide__hero-cta-buttons,
    .page-payment-methods-withdrawal-guide__cta-buttons {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
    }
    .page-payment-methods-withdrawal-guide__container,
    .page-payment-methods-withdrawal-guide__hero-content,
    .page-payment-methods-withdrawal-guide__important-notes,
    .page-payment-methods-withdrawal-guide__contact-support,
    .page-payment-methods-withdrawal-guide__faq-list {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Image responsiveness */
    .page-payment-methods-withdrawal-guide img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-payment-methods-withdrawal-guide__method-image,
    .page-payment-methods-withdrawal-guide__support-image {
        height: auto;
        max-width: 100%;
    }
    .page-payment-methods-withdrawal-guide__features-grid,
    .page-payment-methods-withdrawal-guide__method-grid,
    .page-payment-methods-withdrawal-guide__issues-grid,
    .page-payment-methods-withdrawal-guide__tips-grid,
    .page-payment-methods-withdrawal-guide__steps-container {
        grid-template-columns: 1fr;
    }
    .page-payment-methods-withdrawal-guide__faq-item summary {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-payment-methods-withdrawal-guide__faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-payment-methods-withdrawal-guide__hero-title {
        font-size: 1.8em;
    }
    .page-payment-methods-withdrawal-guide__hero-description {
        font-size: 0.9em;
    }
    .page-payment-methods-withdrawal-guide__section-title,
    .page-payment-methods-withdrawal-guide__cta-title {
        font-size: 1.5em;
    }
    .page-payment-methods-withdrawal-guide__feature-title,
    .page-payment-methods-withdrawal-guide__method-title,
    .page-payment-methods-withdrawal-guide__issue-title,
    .page-payment-methods-withdrawal-guide__tip-title,
    .page-payment-methods-withdrawal-guide__notes-title,
    .page-payment-methods-withdrawal-guide__contact-title,
    .page-payment-methods-withdrawal-guide__step-title {
        font-size: 1.3em;
    }
}