.page-payment-methods {
    color: #333333; /* Dark text for light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-payment-methods__hero-section {
    background-color: #000000; /* Main color */
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

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

.page-payment-methods__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FCBC45; /* Login button color for accent */
    font-weight: bold;
}

.page-payment-methods__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.8;
}

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

.page-payment-methods__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 180px;
    text-align: center;
}

.page-payment-methods__button--register {
    background-color: #FFFFFF; /* Register color */
    color: #000000;
    border: 2px solid #FFFFFF;
}

.page-payment-methods__button--register:hover {
    background-color: transparent;
    color: #FFFFFF;
}

.page-payment-methods__button--deposit {
    background-color: #FCBC45; /* Login color */
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-payment-methods__button--deposit:hover {
    background-color: transparent;
    color: #FCBC45;
}

.page-payment-methods__hero-image {
    width: 100%;
    max-width: 1200px;
}

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

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

.page-payment-methods__section-title {
    font-size: 2.8em;
    color: #000000;
    margin-bottom: 25px;
    font-weight: bold;
}

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

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

.page-payment-methods__payment-card {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-payment-methods__payment-card img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
    object-fit: cover;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px;
}

.page-payment-methods__card-title {
    font-size: 1.8em;
    color: #000000;
    margin-bottom: 15px;
}

.page-payment-methods__card-text {
    color: #666666;
    margin-bottom: 25px;
}

.page-payment-methods__card-link {
    display: inline-block;
    background-color: #FCBC45;
    color: #000000;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-payment-methods__card-link:hover {
    background-color: #e0a53a;
}

.page-payment-methods__how-to-section {
    background-color: #f8f8f8;
    padding: 60px 20px;
    border-radius: 15px;
}

.page-payment-methods__process-container {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.page-payment-methods__process-step {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.page-payment-methods__process-step img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
    object-fit: cover;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px;
}

.page-payment-methods__step-title {
    font-size: 2em;
    color: #000000;
    margin-bottom: 20px;
}

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

.page-payment-methods__step-list li {
    margin-bottom: 10px;
    font-size: 1.05em;
    color: #444444;
    position: relative;
    padding-left: 25px;
}

.page-payment-methods__step-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #FCBC45;
}

.page-payment-methods__security-section {
    background-color: #000000;
    color: #FFFFFF;
    padding: 60px 20px;
    border-radius: 15px;
}

.page-payment-methods__security-section .page-payment-methods__section-title {
    color: #FCBC45;
}

.page-payment-methods__security-section .page-payment-methods__section-description {
    color: #e0e0e0;
}

.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-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__feature-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px;
}

.page-payment-methods__feature-title {
    font-size: 1.6em;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.page-payment-methods__feature-text {
    color: #CCCCCC;
}

.page-payment-methods__faq-section {
    text-align: left;
}

.page-payment-methods__faq-list {
    margin-top: 40px;
}

.page-payment-methods__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px 25px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

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

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

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

.page-payment-methods__faq-answer {
    color: #666666;
    font-size: 1.05em;
    display: none;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
    margin-top: 10px;
}

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

.page-payment-methods__support-cta,
.page-payment-methods__join-cta {
    margin-top: 80px;
    padding: 40px 20px;
    background-color: #f8f8f8;
    border-radius: 15px;
}

.page-payment-methods__support-cta .page-payment-methods__button,
.page-payment-methods__join-cta .page-payment-methods__button {
    background-color: #FCBC45;
    color: #000000;
    border: none;
    margin-top: 30px;
    padding: 18px 40px;
    font-size: 1.2em;
    border-radius: 8px;
}

.page-payment-methods__support-cta .page-payment-methods__button:hover,
.page-payment-methods__join-cta .page-payment-methods__button:hover {
    background-color: #e0a53a;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-payment-methods__hero-title {
        font-size: 3em;
    }
    .page-payment-methods__section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-payment-methods__hero-section {
        padding: 60px 20px;
        gap: 30px;
    }
    .page-payment-methods__hero-title {
        font-size: 2.5em;
    }
    .page-payment-methods__hero-description {
        font-size: 1em;
    }
    .page-payment-methods__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-payment-methods__button {
        width: 100%;
        max-width: 300px;
    }
    .page-payment-methods__overview-section,
    .page-payment-methods__how-to-section,
    .page-payment-methods__security-section,
    .page-payment-methods__faq-section,
    .page-payment-methods__support-cta,
    .page-payment-methods__join-cta {
        margin: 40px auto;
        padding: 0 15px;
    }
    .page-payment-methods__section-title {
        font-size: 1.8em;
    }
    .page-payment-methods__section-description {
        font-size: 0.95em;
    }
    .page-payment-methods__payment-grid,
    .page-payment-methods__process-container,
    .page-payment-methods__security-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-payment-methods__payment-card,
    .page-payment-methods__process-step,
    .page-payment-methods__feature-item {
        padding: 20px;
    }
    .page-payment-methods__payment-card img,
    .page-payment-methods__process-step img,
    .page-payment-methods__feature-item img {
        max-width: 100%;
        height: auto; /* Ensure images are responsive */
        min-width: 200px; /* Enforce minimum size */
        min-height: 200px;
    }
    .page-payment-methods__card-title {
        font-size: 1.5em;
    }
    .page-payment-methods__step-title {
        font-size: 1.6em;
    }
    .page-payment-methods__feature-title {
        font-size: 1.4em;
    }
    .page-payment-methods__faq-question {
        font-size: 1.1em;
    }
    /* Ensure all content area images are responsive and not too small */
    .page-payment-methods img {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-payment-methods__hero-title {
        font-size: 2em;
    }
    .page-payment-methods__section-title {
        font-size: 1.6em;
    }
    .page-payment-methods__button {
        padding: 12px 20px;
        font-size: 1em;
    }
}