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

/* Custom Colors */
:root {
    --bg-primary: #08160F;
    --bg-card: #11271B;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
}

.page-payment-methods-withdrawal-process {
    font-family: 'Arial', sans-serif;
    color: var(--text-main); /* Default text color for the page content */
    background-color: var(--bg-primary); /* Page background from custom colors */
}

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

/* Hero Section */
.page-payment-methods-withdrawal-process__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 20px 80px; /* Small top padding, more bottom padding for content */
    overflow: hidden;
    background-color: var(--deep-green);
}

.page-payment-methods-withdrawal-process__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Limit height to prevent overly tall images */
    overflow: hidden;
}

.page-payment-methods-withdrawal-process__hero-image {
    width: 1200px; /* HTML width attribute */
    height: 675px; /* HTML height attribute */
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-payment-methods-withdrawal-process__hero-content {
    padding: 40px 20px;
    z-index: 1;
    color: var(--text-main);
    max-width: 900px;
}

.page-payment-methods-withdrawal-process__hero-title {
    font-size: clamp(2em, 4vw, 3em); /* H1 font size clamp */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--gold-color);
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-payment-methods-withdrawal-process__hero-description {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

/* CTA Button */
.page-payment-methods-withdrawal-process__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    background: var(--btn-gradient);
    color: #ffffff;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-payment-methods-withdrawal-process__cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-payment-methods-withdrawal-process__cta-button--secondary {
    background: none;
    border: 2px solid var(--border-color);
    color: var(--text-main);
    margin-left: 20px;
}

.page-payment-methods-withdrawal-process__cta-button--secondary:hover {
    background-color: rgba(46, 122, 78, 0.2);
}

.page-payment-methods-withdrawal-process__cta-button--center {
    display: block;
    margin: 40px auto 20px;
    text-align: center;
    max-width: 300px; /* Limit width for centered button */
}

/* Section Titles */
.page-payment-methods-withdrawal-process__section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

/* Text Blocks */
.page-payment-methods-withdrawal-process__text-block {
    font-size: 1.1em;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 30px;
    text-align: justify;
}

.page-payment-methods-withdrawal-process__image-content {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    margin: 40px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-payment-methods-withdrawal-process__image-content--center {
    margin-left: auto;
    margin-right: auto;
    max-width: 900px; /* Ensure content images are not excessively wide */
}

/* Introduction Section */
.page-payment-methods-withdrawal-process__introduction-section {
    padding: 60px 0;
    background-color: var(--bg-primary);
}

/* Steps Section */
.page-payment-methods-withdrawal-process__steps-section {
    padding: 60px 0;
    background-color: var(--deep-green);
    color: var(--text-main);
}

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

.page-payment-methods-withdrawal-process__step-card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.page-payment-methods-withdrawal-process__step-card:hover {
    transform: translateY(-5px);
}

.page-payment-methods-withdrawal-process__step-title {
    font-size: 1.5em;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-payment-methods-withdrawal-process__step-description {
    font-size: 1em;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Considerations Section */
.page-payment-methods-withdrawal-process__considerations-section {
    padding: 60px 0;
    background-color: var(--bg-primary);
}

.page-payment-methods-withdrawal-process__list {
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
}

.page-payment-methods-withdrawal-process__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.7;
    color: var(--text-secondary);
}

.page-payment-methods-withdrawal-process__list li strong {
    color: var(--text-main);
}

.page-payment-methods-withdrawal-process__list li::before {
    content: '✅'; /* Green checkmark */
    position: absolute;
    left: 0;
    color: var(--glow-color);
    font-size: 1.2em;
    top: 0;
}

/* Issues Section */
.page-payment-methods-withdrawal-process__issues-section {
    padding: 60px 0;
    background-color: var(--bg-card);
}

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

.page-payment-methods-withdrawal-process__issue-card {
    background-color: var(--deep-green);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.page-payment-methods-withdrawal-process__issue-title {
    font-size: 1.4em;
    color: var(--gold-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-payment-methods-withdrawal-process__issue-description {
    font-size: 1em;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* FAQ Section */
.page-payment-methods-withdrawal-process__faq-section {
    padding: 60px 0;
    background-color: var(--bg-primary);
}

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

.page-payment-methods-withdrawal-process__faq-item {
    background-color: var(--bg-card);
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    color: var(--text-main);
}

.page-payment-methods-withdrawal-process__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-main);
    background-color: var(--deep-green);
    transition: background-color 0.3s ease;
}

.page-payment-methods-withdrawal-process__faq-question:hover {
    background-color: var(--border-color);
}

.page-payment-methods-withdrawal-process__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: var(--glow-color);
    transition: transform 0.3s ease;
}

.page-payment-methods-withdrawal-process__faq-item[open] .page-payment-methods-withdrawal-process__faq-toggle {
    transform: rotate(45deg);
}

.page-payment-methods-withdrawal-process__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    line-height: 1.7;
    color: var(--text-secondary);
}

.page-payment-methods-withdrawal-process__faq-answer p {
    margin: 0;
    color: var(--text-secondary);
}

/* Conclusion Section */
.page-payment-methods-withdrawal-process__conclusion-section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--deep-green);
    color: var(--text-main);
}

.page-payment-methods-withdrawal-process__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-payment-methods-withdrawal-process__hero-title {
        font-size: clamp(1.8em, 5vw, 2.5em);
    }
    .page-payment-methods-withdrawal-process__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-payment-methods-withdrawal-process {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-payment-methods-withdrawal-process__hero-section {
        padding: 10px 15px 60px;
    }
    .page-payment-methods-withdrawal-process__hero-content {
        padding: 30px 15px;
    }
    .page-payment-methods-withdrawal-process__hero-title {
        font-size: clamp(1.5em, 6vw, 2em);
    }
    .page-payment-methods-withdrawal-process__hero-description {
        font-size: 1em;
    }
    .page-payment-methods-withdrawal-process__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
        padding-top: 30px;
    }
    .page-payment-methods-withdrawal-process__text-block {
        font-size: 0.95em;
    }
    .page-payment-methods-withdrawal-process__container {
        padding: 0 15px;
    }

    /* Images responsive */
    .page-payment-methods-withdrawal-process img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-payment-methods-withdrawal-process__section,
    .page-payment-methods-withdrawal-process__card,
    .page-payment-methods-withdrawal-process__container,
    .page-payment-methods-withdrawal-process__hero-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    /* Remove extra padding from container if already applied by section */
    .page-payment-methods-withdrawal-process__introduction-section .page-payment-methods-withdrawal-process__container,
    .page-payment-methods-withdrawal-process__steps-section .page-payment-methods-withdrawal-process__container,
    .page-payment-methods-withdrawal-process__considerations-section .page-payment-methods-withdrawal-process__container,
    .page-payment-methods-withdrawal-process__issues-section .page-payment-methods-withdrawal-process__container,
    .page-payment-methods-withdrawal-process__faq-section .page-payment-methods-withdrawal-process__container,
    .page-payment-methods-withdrawal-process__conclusion-section .page-payment-methods-withdrawal-process__container {
        padding-left: 0;
        padding-right: 0;
    }

    /* Buttons responsive */
    .page-payment-methods-withdrawal-process__cta-button,
    .page-payment-methods-withdrawal-process__btn-secondary {
        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 secondary button */
        margin-bottom: 15px; /* Add space between stacked buttons */
    }
    .page-payment-methods-withdrawal-process__cta-group {
        flex-direction: column;
        gap: 0;
    }
    .page-payment-methods-withdrawal-process__cta-button:last-child {
        margin-bottom: 0;
    }
    .page-payment-methods-withdrawal-process__cta-button--center {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .page-payment-methods-withdrawal-process__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-payment-methods-withdrawal-process__faq-answer {
        padding: 0 20px 15px;
    }
    .page-payment-methods-withdrawal-process__list li {
        padding-left: 25px;
        font-size: 1em;
    }
    .page-payment-methods-withdrawal-process__list li::before {
        font-size: 1em;
    }
}