.page-payment-methods {
    font-family: Arial, sans-serif;
    color: #1F2D3D;
    background-color: #F4F7FB;
    line-height: 1.6;
}

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

.page-payment-methods__hero-section {
    padding-top: 10px; /* Small top padding, relying on body for header offset */
    padding-bottom: 40px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-payment-methods__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-payment-methods__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-payment-methods__main-title {
    font-size: clamp(2.2em, 4vw, 3.5em);
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.page-payment-methods__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-payment-methods__btn-primary {
    display: inline-block;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__btn-primary:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    transform: translateY(-2px);
}

.page-payment-methods__section-title {
    font-size: 2.5em;
    color: #1F2D3D;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.2;
}

.page-payment-methods__section-title--white {
    color: #ffffff;
}

.page-payment-methods__text-block {
    font-size: 1.05em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
}

.page-payment-methods__text-block--white {
    color: #f0f0f0;
}

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

.page-payment-methods__dark-section {
    background: #2F6BFF;
    color: #ffffff;
}

.page-payment-methods__overview-section,
.page-payment-methods__deposit-section,
.page-payment-methods__withdrawal-section,
.page-payment-methods__security-section,
.page-payment-methods__support-section,
.page-payment-methods__faq-section,
.page-payment-methods__conclusion-section {
    padding: 60px 0;
}

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

.page-payment-methods__feature-card,
.page-payment-methods__method-card,
.page-payment-methods__security-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.page-payment-methods__feature-card:hover,
.page-payment-methods__method-card:hover,
.page-payment-methods__security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-payment-methods__feature-title,
.page-payment-methods__method-title,
.page-payment-methods__security-title {
    font-size: 1.5em;
    color: #2F6BFF;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-payment-methods__feature-description,
.page-payment-methods__method-description,
.page-payment-methods__security-description {
    font-size: 1em;
    color: #1F2D3D;
    line-height: 1.7;
    flex-grow: 1;
}

.page-payment-methods__method-icon,
.page-payment-methods__security-icon {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-payment-methods__steps-list,
.page-payment-methods__checklist,
.page-payment-methods__support-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 20px;
    color: #1F2D3D;
}

.page-payment-methods__steps-list li,
.page-payment-methods__checklist li,
.page-payment-methods__support-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 1em;
}

.page-payment-methods__steps-list li::before,
.page-payment-methods__checklist li::before {
    content: '✓';
    color: #2F6BFF;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-payment-methods__cta-container {
    text-align: center;
    margin-top: 50px;
}

.page-payment-methods__info-block {
    max-width: 900px;
    margin: 40px auto;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.page-payment-methods__info-title,
.page-payment-methods__support-title {
    font-size: 1.8em;
    color: #2F6BFF;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-payment-methods__info-title:first-of-type {
    margin-top: 0;
}

.page-payment-methods__info-description,
.page-payment-methods__support-description {
    font-size: 1em;
    line-height: 1.7;
    color: #1F2D3D;
    margin-bottom: 20px;
}

.page-payment-methods__btn-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #2F6BFF;
    padding: 15px 30px;
    border: 2px solid #2F6BFF;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-payment-methods__btn-secondary:hover {
    background-color: #2F6BFF;
    color: #ffffff;
    transform: translateY(-2px);
}

.page-payment-methods__support-info {
    max-width: 800px;
    margin: 40px auto;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.page-payment-methods__faq-list {
    max-width: 900px;
    margin: 40px auto;
}

.page-payment-methods__faq-item {
    background-color: #ffffff;
    border: 1px solid #D6E2FF;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-payment-methods__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    color: #1F2D3D;
    background-color: #F8F9FA;
    border-bottom: 1px solid #D6E2FF;
    list-style: none;
}

.page-payment-methods__faq-item[open] > .page-payment-methods__faq-question {
    border-bottom: 1px solid #D6E2FF;
}

.page-payment-methods__faq-question::-webkit-details-marker {
    display: none;
}

.page-payment-methods__faq-question::marker {
    display: none;
}

.page-payment-methods__faq-qtext {
    flex-grow: 1;
}

.page-payment-methods__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #2F6BFF;
}

.page-payment-methods__faq-item[open] .page-payment-methods__faq-toggle {
    content: '−';
}

.page-payment-methods__faq-answer {
    padding: 20px;
    font-size: 1em;
    color: #1F2D3D;
    line-height: 1.7;
    background-color: #ffffff;
}

/* General Image Responsiveness */
.page-payment-methods img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Mobile Specific Styles */
@media (max-width: 768px) {
    /* HERO Section */
    .page-payment-methods__hero-section {
        padding-top: 10px !important; /* Small top padding for mobile */
        padding-bottom: 30px;
    }

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

    .page-payment-methods__description {
        font-size: 0.95em;
        margin-bottom: 20px;
    }

    /* General Section Padding and Text */
    .page-payment-methods__overview-section,
    .page-payment-methods__deposit-section,
    .page-payment-methods__withdrawal-section,
    .page-payment-methods__security-section,
    .page-payment-methods__support-section,
    .page-payment-methods__faq-section,
    .page-payment-methods__conclusion-section {
        padding: 40px 0;
    }

    .page-payment-methods__container {
        padding-left: 15px;
        padding-right: 15px;
    }

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

    .page-payment-methods__text-block {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    /* Feature/Method/Security Grids */
    .page-payment-methods__feature-grid,
    .page-payment-methods__method-grid,
    .page-payment-methods__security-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-payment-methods__feature-card,
    .page-payment-methods__method-card,
    .page-payment-methods__security-card {
        padding: 20px;
    }

    .page-payment-methods__feature-title,
    .page-payment-methods__method-title,
    .page-payment-methods__security-title {
        font-size: 1.3em;
    }

    .page-payment-methods__method-icon,
    .page-payment-methods__security-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }

    /* Buttons and Button Containers */
    .page-payment-methods__btn-primary,
    .page-payment-methods__btn-secondary,
    .page-payment-methods a[class*="button"],
    .page-payment-methods a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px !important;
        font-size: 1em !important;
    }

    .page-payment-methods__cta-container,
    .page-payment-methods__support-info {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-payment-methods__cta-container {
        margin-top: 30px;
    }

    /* Image Responsiveness for all images within .page-payment-methods */
    .page-payment-methods img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-payment-methods__section,
    .page-payment-methods__card,
    .page-payment-methods__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* FAQ Section */
    .page-payment-methods__faq-question {
        font-size: 1em;
        padding: 15px;
    }

    .page-payment-methods__faq-answer {
        padding: 15px;
    }

    .page-payment-methods__info-block {
        padding: 20px;
    }

    .page-payment-methods__info-title,
    .page-payment-methods__support-title {
        font-size: 1.5em;
        margin-top: 20px;
        margin-bottom: 10px;
    }
}