.page-payment-methods {
    background-color: #F4F7FB;
    color: #1F2D3D;
}

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

.page-payment-methods__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;
    background-color: #F4F7FB;
}

.page-payment-methods__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.page-payment-methods__hero-image {
    width: 100%;
    height: auto;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

.page-payment-methods__hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.page-payment-methods__main-title {
    color: #1F2D3D;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
}

.page-payment-methods__hero-description {
    color: #1F2D3D;
    font-size: 1.1em;
    margin-bottom: 30px;
}

.page-payment-methods__cta-button {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
    min-width: 200px;
    text-align: center;
}

.page-payment-methods__cta-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

.page-payment-methods__cta-button--secondary {
    background: #2F6BFF;
}

.page-payment-methods__cta-button--secondary:hover {
    background: #6FA3FF;
}

.page-payment-methods__introduction-section,
.page-payment-methods__details-section,
.page-payment-methods__how-to-deposit,
.page-payment-methods__faq-section {
    padding: 40px 0;
    background-color: #F4F7FB;
}

.page-payment-methods__section-title {
    color: #1F2D3D;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.3;
}

.page-payment-methods__text-content {
    color: #1F2D3D;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

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

.page-payment-methods__payment-card {
    background-color: #FFFFFF;
    border: 1px solid #D6E2FF;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods__payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-payment-methods__card-image {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-payment-methods__card-title {
    color: #000000;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.25em;
}

.page-payment-methods__card-description {
    color: #1F2D3D;
    font-size: 0.95em;
    line-height: 1.5;
}

.page-payment-methods__how-to-deposit .page-payment-methods__container {
    max-width: 900px;
}

.page-payment-methods__step-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    margin-top: 30px;
}

.page-payment-methods__step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.page-payment-methods__step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2F6BFF;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.2em;
    flex-shrink: 0;
}

.page-payment-methods__step-content {
    text-align: left;
}

.page-payment-methods__step-title {
    color: #000000;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.15em;
}

.page-payment-methods__step-description {
    color: #1F2D3D;
    font-size: 0.95em;
    line-height: 1.5;
}

.page-payment-methods__cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.page-payment-methods__faq-section {
    background-color: #F4F7FB;
}

.page-payment-methods__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #D6E2FF;
    border-radius: 10px;
    padding: 20px 25px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-payment-methods__faq-question {
    color: #000000;
    font-weight: 600;
    font-size: 1.1em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-payment-methods__faq-answer {
    color: #1F2D3D;
    font-size: 0.95em;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-payment-methods__hero-section {
        padding-bottom: 20px;
    }

    .page-payment-methods__hero-content {
        padding: 0 15px;
    }

    .page-payment-methods__main-title {
        font-size: clamp(1.8em, 5vw, 2.5em);
        margin-bottom: 10px;
    }

    .page-payment-methods__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-payment-methods__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
        min-width: 180px;
    }

    .page-payment-methods__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .page-payment-methods__payment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-payment-methods__card-image {
        max-width: 100%;
        min-width: 200px;
        height: auto;
    }

    .page-payment-methods__payment-card {
        padding: 20px;
    }

    .page-payment-methods__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
    }

    .page-payment-methods__step-number {
        margin-bottom: 10px;
    }

    .page-payment-methods__step-title {
        font-size: 1.1em;
    }

    .page-payment-methods__faq-question {
        font-size: 1em;
    }

    .page-payment-methods__text-content,
    .page-payment-methods__card-description,
    .page-payment-methods__step-description,
    .page-payment-methods__faq-answer {
        font-size: 0.9em;
    }

    /* Ensure all images within content area are responsive and not smaller than 200px */
    .page-payment-methods img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum size even on mobile */
        min-height: 200px; /* Enforce minimum size even on mobile */
    }
}

@media (max-width: 480px) {
    .page-payment-methods__main-title {
        font-size: clamp(1.5em, 6vw, 2em);
    }

    .page-payment-methods__section-title {
        font-size: 1.5em;
    }
}