.page-payment-methods {
    background-color: #F4F7FB; /* Background color for the entire page content */
    color: #1F2D3D; /* Main text color */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small padding at the top, body handles header offset */
}

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

.page-payment-methods__hero-section {
    background-color: #FFFFFF; /* Card BG */
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-payment-methods__hero-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.page-payment-methods__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    min-height: 200px; /* Ensure min size */
}

.page-payment-methods__hero-content {
    padding: 40px 20px;
    text-align: center;
}

.page-payment-methods__hero-title {
    font-size: clamp(2rem, 4vw, 3rem); /* H1 font size with clamp */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #000000; /* Custom Color_1776249996415 */
}

.page-payment-methods__hero-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #1F2D3D; /* Text Main */
}

.page-payment-methods__hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-payment-methods__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 150px;
    text-align: center;
    border: none;
    cursor: pointer;
}

.page-payment-methods__button--primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

.page-payment-methods__button--primary:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    box-shadow: 0 6px 20px rgba(47, 107, 255, 0.6);
}

.page-payment-methods__button--secondary {
    background-color: transparent;
    border: 2px solid #2F6BFF; /* Main color */
    color: #2F6BFF; /* Main color */
}

.page-payment-methods__button--secondary:hover {
    background-color: #2F6BFF; /* Main color */
    color: #FFFFFF;
}

.page-payment-methods__button--small {
    padding: 8px 18px;
    font-size: 0.9rem;
    min-width: unset;
}

.page-payment-methods__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #000000; /* Custom Color_1776249996415 */
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-payment-methods__section-description {
    font-size: 1rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #1F2D3D; /* Text Main */
}

.page-payment-methods__overview-section {
    padding: 60px 0;
}

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

.page-payment-methods__method-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #D6E2FF; /* Border color */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-payment-methods__card-image-wrapper {
    width: 100%;
    max-width: 400px; /* Max width for card images */
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 4px;
}

.page-payment-methods__card-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    min-width: 200px; /* Minimum size for content images */
    min-height: 200px; /* Minimum size for content images */
}

.page-payment-methods__card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
}

.page-payment-methods__card-text {
    font-size: 1rem;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-payment-methods__card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
    width: 100%;
    max-width: 250px;
}

.page-payment-methods__card-features li {
    margin-bottom: 8px;
    color: #1F2D3D; /* Text Main */
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-payment-methods__card-features li::before {
    content: '✅';
    font-size: 0.9em;
    line-height: 1;
}

.page-payment-methods__feature-highlight {
    color: #000000; /* Custom Color_1776249996415 */
}

.page-payment-methods__instructions-section {
    padding: 60px 0;
    background-color: #F4F7FB; /* Background color */
}

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

.page-payment-methods__step-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #D6E2FF; /* Border color */
}

.page-payment-methods__step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2F6BFF; /* Main color */
    margin-bottom: 15px;
}

.page-payment-methods__step-text {
    font-size: 1rem;
    color: #1F2D3D; /* Text Main */
}

.page-payment-methods__cta-bottom {
    text-align: center;
    padding-top: 30px;
}

.page-payment-methods__cta-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 25px;
}

.page-payment-methods__faq-section {
    padding: 60px 0;
    background-color: #FFFFFF; /* Card BG */
    border-top: 1px solid #D6E2FF; /* Border color */
}

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

.page-payment-methods__faq-item {
    background-color: #F4F7FB; /* Background color */
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    border: 1px solid #D6E2FF; /* Border color */
}

.page-payment-methods__faq-question {
    font-size: 1.15rem;
    font-weight: 600;
    color: #2F6BFF; /* Main color */
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
}

.page-payment-methods__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-payment-methods__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(0deg); /* Reset rotation */
}

.page-payment-methods__faq-answer {
    font-size: 1rem;
    color: #1F2D3D; /* Text Main */
    display: none; /* Hidden by default, shown by JS */
    padding-top: 10px;
    border-top: 1px solid #D6E2FF; /* Border color */
    margin-top: 10px;
}

.page-payment-methods__contact-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #F4F7FB; /* Background color */
    border-radius: 8px;
    border: 1px solid #D6E2FF; /* Border color */
}

.page-payment-methods__contact-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 25px;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-payment-methods__hero-content {
        padding: 30px 15px;
    }

    .page-payment-methods__hero-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .page-payment-methods__hero-description {
        font-size: 1rem;
    }

    .page-payment-methods__hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .page-payment-methods__button {
        width: 100%;
        max-width: 280px;
    }

    .page-payment-methods__section-title {
        font-size: clamp(1.6rem, 4.5vw, 2.2rem);
    }

    .page-payment-methods__payment-grid,
    .page-payment-methods__instruction-steps {
        grid-template-columns: 1fr;
    }

    .page-payment-methods__method-card,
    .page-payment-methods__step-card,
    .page-payment-methods__faq-item {
        padding: 20px;
    }

    .page-payment-methods__card-title,
    .page-payment-methods__step-title {
        font-size: 1.3rem;
    }

    .page-payment-methods__cta-text,
    .page-payment-methods__contact-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .page-payment-methods__container {
        padding: 15px;
    }

    /* Mobile content area images must not cause horizontal scrolling */
    .page-payment-methods__hero-image,
    .page-payment-methods__method-card img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    .page-payment-methods {
        overflow-x: hidden; /* Prevent horizontal scrolling */
    }
}

/* Ensure all content area images are at least 200x200px */
.page-payment-methods__hero-image,
.page-payment-methods__card-image,
.page-payment-methods__overview-section img,
.page-payment-methods__instructions-section img,
.page-payment-methods__faq-section img {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}

/* Ensure CSS for img width/height is consistent with HTML attributes or responsive */
/* The HTML attributes are for layout slot, CSS will make them responsive */
.page-payment-methods__hero-image[width][height] {
    width: var(--img-width, 100%); /* Default to 100% width, height auto */
    height: auto;
    aspect-ratio: var(--img-aspect-ratio, 16/9); /* Maintain aspect ratio */
}

.page-payment-methods__card-image[width][height] {
    width: var(--img-width, 100%);
    height: auto;
    aspect-ratio: var(--img-aspect-ratio, 4/3);
}

/* No CSS filter for images */
.page-payment-methods img {
    filter: none;
}