.page-payment-methods {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
}

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

.page-payment-methods__hero-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 10px; /* Small top padding, main padding from body */
}

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

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

.page-payment-methods__hero-content {
    padding: 40px 20px;
    text-align: center;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, #0A0A0A 100%);
}

.page-payment-methods__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #FFF6D6;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-payment-methods__hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #E5E5E5;
}

.page-payment-methods__hero-cta {
    display: inline-block;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #0A0A0A;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 1.1rem;
}

.page-payment-methods__hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(242, 193, 78, 0.4);
}

.page-payment-methods__section-title {
    font-size: 2.5rem;
    color: #F2C14E;
    text-align: center;
    margin-bottom: 30px;
    padding-top: 40px;
    font-weight: bold;
}

.page-payment-methods__section-description {
    font-size: 1rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    color: #E5E5E5;
}

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

.page-payment-methods__methods-grid {
    padding: 60px 0;
    background-color: #111111;
}

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

.page-payment-methods__method-card {
    background-color: #0A0A0A;
    border: 1px solid #3A2A12;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-payment-methods__method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(242, 193, 78, 0.2);
}

.page-payment-methods__method-icon {
    width: 100%; /* Ensure image fills card width */
    max-width: 300px; /* Max width for images within cards */
    height: auto;
    min-height: 200px; /* Minimum size requirement */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 2px solid #F2C14E;
}

.page-payment-methods__method-title {
    font-size: 1.6rem;
    color: #F2C14E;
    margin-bottom: 15px;
}

.page-payment-methods__method-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #E5E5E5;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-payment-methods__method-cta {
    display: inline-block;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #0A0A0A;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.page-payment-methods__method-cta:hover {
    background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
}

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

.page-payment-methods__steps-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.page-payment-methods__step-card {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 12px;
    padding: 30px;
    flex: 1;
    max-width: 550px;
}

.page-payment-methods__step-title {
    font-size: 1.8rem;
    color: #FFD36B;
    margin-bottom: 20px;
    text-align: center;
}

.page-payment-methods__step-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-payment-methods__step-list li {
    background-color: #0A0A0A;
    border-left: 3px solid #F2C14E;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.5;
    color: #E5E5E5;
}

.page-payment-methods__step-list li:last-child {
    margin-bottom: 0;
}

.page-payment-methods__step-list strong {
    color: #FFF6D6;
}

.page-payment-methods__step-cta {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #0A0A0A;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.page-payment-methods__step-cta:hover {
    background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
}

.page-payment-methods__security-section {
    padding: 60px 0;
    background-color: #0A0A0A;
}

.page-payment-methods__security-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-payment-methods__security-text {
    flex: 1;
    min-width: 300px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #E5E5E5;
}

.page-payment-methods__security-image {
    flex-shrink: 0;
    max-width: 500px;
    width: 100%;
    height: auto;
    min-height: 200px; /* Minimum size requirement */
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #FFD36B;
}

.page-payment-methods__faq-section {
    padding: 60px 0;
    background-color: #111111;
}

.page-payment-methods__faq-item {
    background-color: #0A0A0A;
    border: 1px solid #3A2A12;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px 30px;
}

.page-payment-methods__faq-question {
    font-size: 1.3rem;
    color: #F2C14E;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-payment-methods__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    color: #FFD36B;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.page-payment-methods__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-payment-methods__faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    color: #E5E5E5;
    display: none;
    padding-top: 10px;
}

.page-payment-methods__faq-answer.active {
    display: block;
}

.page-payment-methods__faq-cta {
    display: block;
    width: fit-content;
    margin: 40px auto 0 auto;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #0A0A0A;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 1.1rem;
}

.page-payment-methods__faq-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(242, 193, 78, 0.4);
}

.page-payment-methods__cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: #0A0A0A;
    border-top: 1px solid #3A2A12;
}

.page-payment-methods__cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #0A0A0A;
    padding: 18px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods__cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(242, 193, 78, 0.5);
}

.page-payment-methods__cta-button--secondary {
    background: none;
    border: 2px solid #F2C14E;
    color: #F2C14E;
}

.page-payment-methods__cta-button--secondary:hover {
    background-color: rgba(242, 193, 78, 0.1);
    box-shadow: 0 12px 20px rgba(242, 193, 78, 0.2);
}

@media (max-width: 768px) {
    .page-payment-methods__hero-title {
        font-size: 2.2rem;
    }

    .page-payment-methods__section-title {
        font-size: 2rem;
    }

    .page-payment-methods__grid {
        grid-template-columns: 1fr;
    }

    .page-payment-methods__steps-wrapper {
        flex-direction: column;
    }

    .page-payment-methods__security-content {
        flex-direction: column;
        text-align: center;
    }

    .page-payment-methods__security-image {
        max-width: 100%;
    }

    .page-payment-methods__cta-button {
        display: block;
        margin: 15px auto;
        width: 80%;
        max-width: 300px;
    }

    .page-payment-methods__hero-image, .page-payment-methods__method-icon, .page-payment-methods__security-image, .page-payment-methods__container img {
        max-width: 100%;
        height: auto;
    }

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

@media (max-width: 480px) {
    .page-payment-methods__hero-title {
        font-size: 1.8rem;
    }

    .page-payment-methods__section-title {
        font-size: 1.8rem;
    }

    .page-payment-methods__hero-description,
    .page-payment-methods__section-description,
    .page-payment-methods__method-text,
    .page-payment-methods__step-list li,
    .page-payment-methods__security-text,
    .page-payment-methods__faq-answer {
        font-size: 0.9rem;
    }

    .page-payment-methods__method-title {
        font-size: 1.4rem;
    }

    .page-payment-methods__faq-question {
        font-size: 1.1rem;
    }

    .page-payment-methods__hero-cta,
    .page-payment-methods__method-cta,
    .page-payment-methods__step-cta,
    .page-payment-methods__faq-cta,
    .page-payment-methods__cta-button {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}