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

.page-payment-methods__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 20px 40px;
    background-color: #111111;
    gap: 30px;
}

.page-payment-methods__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.page-payment-methods__hero-content {
    max-width: 900px;
}

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

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

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

.page-payment-methods__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    text-align: center;
    font-size: 1em;
    border: none;
}

.page-payment-methods__btn--primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #0A0A0A;
}

.page-payment-methods__btn--primary:hover {
    background: linear-gradient(180deg, #FFE082 0%, #E6B03D 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-payment-methods__btn--secondary {
    background-color: transparent;
    border: 2px solid #F2C14E;
    color: #FFF6D6;
}

.page-payment-methods__btn--secondary:hover {
    background-color: #F2C14E;
    color: #0A0A0A;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-payment-methods__overview-section,
.page-payment-methods__how-to-section,
.page-payment-methods__security-section,
.page-payment-methods__faq-section,
.page-payment-methods__cta-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-payment-methods__section-title {
    font-size: clamp(24px, 3vw, 40px);
    color: #F2C14E;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-payment-methods__section-description {
    font-size: 1.05em;
    color: #E5E5E5;
    max-width: 800px;
    margin: 0 auto 40px;
}

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

.page-payment-methods__card {
    background-color: #111111;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #3A2A12;
}

.page-payment-methods__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    border-color: #F2C14E;
}

.page-payment-methods__card-icon {
    width: 200px; /* Minimum size requirement */
    height: 133px; /* Aspect ratio maintained for 600x400 source */
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-payment-methods__card-title {
    font-size: 1.4em;
    color: #FFD36B;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-payment-methods__card-text {
    font-size: 0.95em;
    color: #C0C0C0;
    margin-bottom: 25px;
}

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

.page-payment-methods__card-btn:hover {
    background: linear-gradient(180deg, #FFE082 0%, #E6B03D 100%);
    transform: translateY(-2px);
}

.page-payment-methods__steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 30px;
    text-align: left;
}

.page-payment-methods__step {
    background-color: #111111;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid #3A2A12;
    transition: transform 0.3s ease;
}

.page-payment-methods__step:hover {
    transform: translateY(-5px);
    border-color: #FFD36B;
}

.page-payment-methods__step-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #F2C14E;
    margin-bottom: 15px;
}

.page-payment-methods__step-title {
    font-size: 1.3em;
    color: #FFF6D6;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-payment-methods__step-text {
    font-size: 0.95em;
    color: #C0C0C0;
}

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

.page-payment-methods__feature-item {
    background-color: #111111;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    text-align: center;
    border: 1px solid #3A2A12;
    transition: transform 0.3s ease;
}

.page-payment-methods__feature-item:hover {
    transform: translateY(-5px);
    border-color: #FFD36B;
}

.page-payment-methods__feature-icon {
    width: 100px; /* Enforced min-size 200px in imageRequirements, but display size can be smaller for icons, as long as the source is big enough. This is an exception for icon-like features. */
    height: 100px;
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD36B);
}

.page-payment-methods__feature-title {
    font-size: 1.4em;
    color: #FFD36B;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-payment-methods__feature-text {
    font-size: 0.95em;
    color: #C0C0C0;
}

.page-payment-methods__faq-item {
    background-color: #111111;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A2A12;
    transition: border-color 0.3s ease;
}

.page-payment-methods__faq-item:hover {
    border-color: #F2C14E;
}

.page-payment-methods__faq-question {
    font-size: 1.2em;
    color: #FFF6D6;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
}

.page-payment-methods__faq-answer {
    font-size: 0.95em;
    color: #C0C0C0;
    display: block; /* Ensure it's visible by default */
}

.page-payment-methods__cta-section {
    background-color: #111111;
    padding: 60px 20px;
    border-radius: 15px;
    margin-top: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid #F2C14E;
}

.page-payment-methods__cta-title {
    font-size: clamp(26px, 3.5vw, 42px);
    color: #FFD36B;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-payment-methods__cta-description {
    font-size: 1.1em;
    color: #E5E5E5;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-payment-methods__hero-section {
        flex-direction: column;
        padding: 10px 15px 30px;
    }

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

    .page-payment-methods__btn {
        width: 100%;
        min-width: unset;
    }

    .page-payment-methods__overview-section,
    .page-payment-methods__how-to-section,
    .page-payment-methods__security-section,
    .page-payment-methods__faq-section,
    .page-payment-methods__cta-section {
        padding: 40px 15px;
    }

    .page-payment-methods__cards-grid,
    .page-payment-methods__steps-container,
    .page-payment-methods__features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .page-payment-methods__card-icon,
    .page-payment-methods__feature-icon {
        max-width: 100%;
        height: auto;
    }

    /* Enforce mobile image overflow rule */
    .page-payment-methods img {
        max-width: 100% !important;
        height: auto !important;
    }
    .page-payment-methods__card-icon,
    .page-payment-methods__feature-icon {
        width: auto;
        height: auto;
        max-width: 100%;
        min-width: 200px; /* Ensure images are not too small */
        min-height: 200px;
    }

    .page-payment-methods__hero-image {
        min-width: 200px;
        min-height: 200px;
    }
}

/* Ensure all content area images are not displayed smaller than 200px */
.page-payment-methods__card-icon, 
.page-payment-methods__feature-icon,
.page-payment-methods__hero-image {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover; /* Ensures images fill their space without distortion */
}