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

/* Base styles for the page content */
.page-payment-methods-deposit-withdrawal-guide {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    color: #333333; /* Dark text for light body background */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f8f8f8; /* Light background for content sections */
    overflow-x: hidden; /* Prevent horizontal scroll on all devices */
}

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

/* Hero Section */
.page-payment-methods-deposit-withdrawal-guide__hero-section {
    position: relative;
    overflow: hidden;
    color: #ffffff; /* White text on dark/rich background */
    text-align: center;
    padding: 80px 20px; /* Padding for content inside hero */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

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

.page-payment-methods-deposit-withdrawal-guide__hero-overlay {
    position: relative;
    z-index: 2;
    background-color: rgba(0, 51, 102, 0.7); /* Primary color with transparency */
    padding: 40px;
    border-radius: 10px;
    max-width: 800px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-payment-methods-deposit-withdrawal-guide__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFCC00; /* Auxiliary color for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

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

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

/* General Section Styling */
.page-payment-methods-deposit-withdrawal-guide__section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.page-payment-methods-deposit-withdrawal-guide__section:nth-of-type(even) {
    background-color: #fefefe;
}

.page-payment-methods-deposit-withdrawal-guide__section-title {
    font-size: 2.5em;
    color: #003366; /* Primary color */
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-payment-methods-deposit-withdrawal-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00; /* Auxiliary color */
    border-radius: 2px;
}

.page-payment-methods-deposit-withdrawal-guide__sub-title {
    font-size: 1.8em;
    color: #CC0000; /* Accent color */
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}

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

/* Buttons */
.page-payment-methods-deposit-withdrawal-guide__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.page-payment-methods-deposit-withdrawal-guide__button--primary {
    background-color: #FFCC00; /* Auxiliary color */
    color: #003366; /* Primary color */
    border: 2px solid #FFCC00;
}

.page-payment-methods-deposit-withdrawal-guide__button--primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    color: #002244;
}

.page-payment-methods-deposit-withdrawal-guide__button--secondary {
    background-color: transparent;
    color: #FFCC00; /* Auxiliary color */
    border: 2px solid #FFCC00;
}

.page-payment-methods-deposit-withdrawal-guide__button--secondary:hover {
    background-color: #FFCC00;
    color: #003366;
}

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

.page-payment-methods-deposit-withdrawal-guide__step-card {
    background-color: #fefefe;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 5px solid #003366; /* Primary color accent */
}

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

.page-payment-methods-deposit-withdrawal-guide__step-title {
    font-size: 1.5em;
    color: #003366; /* Primary color */
    margin-bottom: 15px;
    font-weight: bold;
}

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

/* List Styling */
.page-payment-methods-deposit-withdrawal-guide__list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-payment-methods-deposit-withdrawal-guide__list-item {
    background-color: #f0f8ff; /* Light blue background for list items */
    border-left: 5px solid #FFCC00; /* Auxiliary color accent */
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 1.05em;
    color: #333333;
}

.page-payment-methods-deposit-withdrawal-guide__list-item strong {
    color: #003366; /* Primary color for strong text */
}

/* Content Images */
.page-payment-methods-deposit-withdrawal-guide__content-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 40px auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 1000px; /* Ensure images don't stretch too wide on large screens */
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px;
}

/* Payment Overview Grid */
.page-payment-methods-deposit-withdrawal-guide__payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-payment-methods-deposit-withdrawal-guide__payment-card {
    background-color: #fefefe;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-bottom: 5px solid #CC0000; /* Accent color accent */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods-deposit-withdrawal-guide__payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-payment-methods-deposit-withdrawal-guide__payment-card-title {
    font-size: 1.8em;
    color: #003366; /* Primary color */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-payment-methods-deposit-withdrawal-guide__payment-card-description {
    color: #666666;
    font-size: 1.05em;
}

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

.page-payment-methods-deposit-withdrawal-guide__faq-item {
    background-color: #fefefe;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-payment-methods-deposit-withdrawal-guide__faq-question {
    font-size: 1.3em;
    color: #003366; /* Primary color */
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-payment-methods-deposit-withdrawal-guide__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #FFCC00;
    transition: transform 0.3s ease;
}

.page-payment-methods-deposit-withdrawal-guide__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-payment-methods-deposit-withdrawal-guide__faq-answer {
    font-size: 1em;
    color: #555555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-payment-methods-deposit-withdrawal-guide__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

/* Security & Support */
.page-payment-methods-deposit-withdrawal-guide__actions-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
}

/* Call to Action Section */
.page-payment-methods-deposit-withdrawal-guide__cta {
    background-color: #003366; /* Primary color background */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-payment-methods-deposit-withdrawal-guide__cta-content {
    position: relative;
    z-index: 2;
}

.page-payment-methods-deposit-withdrawal-guide__cta .page-payment-methods-deposit-withdrawal-guide__section-title {
    color: #FFCC00; /* Auxiliary color */
    font-size: 2.8em;
}

.page-payment-methods-deposit-withdrawal-guide__cta .page-payment-methods-deposit-withdrawal-guide__section-title::after {
    background-color: #CC0000; /* Accent color */
}

.page-payment-methods-deposit-withdrawal-guide__cta .page-payment-methods-deposit-withdrawal-guide__section-text {
    color: #f0f0f0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

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

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

@media (max-width: 768px) {
    /* Mobile content area images MUST use max-width: 100%; height: auto; */
    .page-payment-methods-deposit-withdrawal-guide__hero-image,
    .page-payment-methods-deposit-withdrawal-guide__content-image,
    .page-payment-methods-deposit-withdrawal-guide__cta-image {
        max-width: 100%;
        height: auto;
        min-width: unset; /* Override min-width for mobile for responsive scaling */
        min-height: unset;
    }

    .page-payment-methods-deposit-withdrawal-guide__hero-section {
        padding: 60px 15px;
        min-height: 400px;
    }

    .page-payment-methods-deposit-withdrawal-guide__hero-overlay {
        padding: 25px;
    }

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

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

    .page-payment-methods-deposit-withdrawal-guide__hero-actions,
    .page-payment-methods-deposit-withdrawal-guide__actions-row,
    .page-payment-methods-deposit-withdrawal-guide__cta-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-payment-methods-deposit-withdrawal-guide__button {
        width: 100%;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-payment-methods-deposit-withdrawal-guide__section {
        padding: 40px 0;
    }

    .page-payment-methods-deposit-withdrawal-guide__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }

    .page-payment-methods-deposit-withdrawal-guide__sub-title {
        font-size: 1.4em;
    }

    .page-payment-methods-deposit-withdrawal-guide__step-card,
    .page-payment-methods-deposit-withdrawal-guide__payment-card {
        padding: 25px;
    }

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

    .page-payment-methods-deposit-withdrawal-guide__cta .page-payment-methods-deposit-withdrawal-guide__section-title {
        font-size: 2.2em;
    }
}