.page-payment-methods {
    background-color: #140C0C; /* Background */
    color: #FFF1E8; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

.page-payment-methods__container--centered {
    text-align: center;
}

/* Hero Section */
.page-payment-methods__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding */
    margin-bottom: 40px;
    display: flex;
    flex-direction: column; /* Ensure image is above content */
    align-items: center; /* Center content horizontally */
    background-color: #2A1212; /* Card BG for the section background */
}

.page-payment-methods__hero-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/6; /* Adjusted for a wider hero image */
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    margin-bottom: 20px;
    max-width: 1200px; /* Constrain image width */
}

.page-payment-methods__hero-content {
    text-align: center;
    padding: 0 20px 40px; /* Padding at the bottom for separation */
    max-width: 900px;
}

.page-payment-methods__main-title {
    font-weight: bold;
    color: #F3C54D; /* Gold */
    margin-bottom: 15px;
    line-height: 1.2;
    /* Use clamp for responsive font size, avoiding fixed large values */
    font-size: clamp(1.8rem, 4.5vw, 3rem);
}

.page-payment-methods__lead-paragraph {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #FFF1E8;
}

.page-payment-methods__cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* General Section Styling */
.page-payment-methods__section {
    padding: 40px 0;
    margin-bottom: 20px;
}

.page-payment-methods__section--overview {
    background-color: #2A1212; /* Card BG */
    border-radius: 8px;
    padding: 40px 20px;
    margin-bottom: 40px;
}

.page-payment-methods__section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    color: #F3C54D; /* Gold */
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-payment-methods__text {
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: center;
}

/* Buttons */
.page-payment-methods__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.page-payment-methods__button--primary {
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button color */
    color: #140C0C; /* Dark text for contrast */
}

.page-payment-methods__button--primary:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.page-payment-methods__button--secondary {
    background-color: #7E0D0D; /* Deep Red */
    color: #FFF1E8; /* Text Main */
    border: 1px solid #6A1E1E; /* Border */
}

.page-payment-methods__button--secondary:hover {
    transform: translateY(-2px);
    background-color: #C61F1F; /* Primary color */
}

.page-payment-methods__button--small {
    padding: 8px 15px;
    font-size: 0.9rem;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    color: #140C0C;
}
.page-payment-methods__button--small:hover {
    opacity: 0.9;
}

/* Features List */
.page-payment-methods__features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: center;
}

.page-payment-methods__feature-item {
    background-color: #2A1212; /* Card BG */
    border: 1px solid #6A1E1E; /* Border */
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__feature-title {
    font-size: 1.3rem;
    color: #F3C54D; /* Gold */
    margin-bottom: 10px;
    font-weight: bold;
}

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

.page-payment-methods__method-card {
    background-color: #2A1212; /* Card BG */
    border: 1px solid #6A1E1E; /* Border */
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-payment-methods__method-image {
    width: 100%;
    height: auto;
    max-width: 400px; /* Constrain max width */
    min-width: 200px; /* Minimum size */
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
    filter: none; /* Ensure no filter is applied */
}

.page-payment-methods__method-title {
    font-size: 1.25rem;
    color: #F3C54D; /* Gold */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-payment-methods__method-description {
    font-size: 0.95rem;
    color: #FFF1E8;
    margin-bottom: 20px;
    flex-grow: 1; /* Push button to bottom */
}

/* Guide Section */
.page-payment-methods__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-payment-methods__guide-block {
    background-color: #2A1212; /* Card BG */
    border: 1px solid #6A1E1E; /* Border */
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-payment-methods__guide-image {
    width: 100%;
    height: auto;
    max-width: 600px; /* Constrain max width */
    min-width: 200px; /* Minimum size */
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
    filter: none; /* Ensure no filter is applied */
}

.page-payment-methods__guide-title {
    font-size: 1.4rem;
    color: #F3C54D; /* Gold */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-payment-methods__steps-list {
    list-style: decimal;
    text-align: left;
    margin: 0 auto 20px;
    padding-left: 25px;
    max-width: 400px;
    color: #FFF1E8;
}

.page-payment-methods__steps-list li {
    margin-bottom: 8px;
    font-size: 1rem;
}

/* FAQ Section */
.page-payment-methods__faq-list {
    margin-top: 30px;
}

.page-payment-methods__faq-item {
    background-color: #2A1212; /* Card BG */
    border: 1px solid #6A1E1E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-payment-methods__faq-question {
    font-size: 1.15rem;
    color: #F3C54D; /* Gold */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-payment-methods__faq-answer {
    font-size: 1rem;
    color: #FFF1E8;
}

/* Final CTA */
.page-payment-methods__section--final-cta {
    background-color: #2A1212; /* Card BG */
    border-radius: 8px;
    padding: 50px 20px;
    text-align: center;
    margin-top: 40px;
}

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

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

    .page-payment-methods__main-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }

    .page-payment-methods__lead-paragraph {
        font-size: 1rem;
    }

    .page-payment-methods__cta-group {
        flex-direction: column;
        gap: 10px;
    }

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

    .page-payment-methods__section-title {
        font-size: clamp(1.3rem, 5vw, 2rem);
    }

    .page-payment-methods__features-list,
    .page-payment-methods__method-grid,
    .page-payment-methods__guide-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-payment-methods img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce min-width for all images in content area */
        min-height: 200px; /* Enforce min-height for all images in content area */
        object-fit: cover; /* Maintain aspect ratio */
    }
}