:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --page-bg: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
}

.page-payment-methods {
    background-color: var(--page-bg);
    color: var(--text-main);
}

.page-payment-methods__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 60px; /* Space below content */
    padding-top: 10px; /* Small top padding, body handles header offset */
    overflow: hidden;
}

.page-payment-methods__hero-image {
    width: 100%;
    height: 1080px; /* Default height for large screens */
    object-fit: cover;
    display: block;
    margin-bottom: 40px;
}

.page-payment-methods__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
    margin-top: -300px; /* Pull content up over the image, but not covering it */
    background-color: var(--card-bg); /* Ensure readability */
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
}

.page-payment-methods__hero-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-payment-methods__hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.page-payment-methods__section {
    padding: 60px 0;
    background-color: var(--page-bg);
    color: var(--text-main);
    border-bottom: 1px solid var(--divider-color);
}

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

.page-payment-methods__section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

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

.page-payment-methods__section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
}

.page-payment-methods__text-block {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-main);
}

.page-payment-methods__image-full-width {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    min-height: 200px;
}

.page-payment-methods__image-content {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    min-width: 200px;
    min-height: 200px;
}

.page-payment-methods__method-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    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.4);
}

.page-payment-methods__card-title {
    font-size: 1.8rem;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-payment-methods__card-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

.page-payment-methods__card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-payment-methods__card-list li {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.page-payment-methods__card-list li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

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

.page-payment-methods__numbered-list li {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    line-height: 1.8;
}

.page-payment-methods__numbered-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    background-color: var(--primary-color);
    color: var(--text-main);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    font-size: 0.9rem;
}

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

.page-payment-methods__feature-list li {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    line-height: 1.7;
}

.page-payment-methods__feature-list li::before {
    content: '★';
    color: var(--gold-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    top: 0;
}

.page-payment-methods__faq-section {
    background-color: var(--deep-green);
}

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

.page-payment-methods__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-payment-methods__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    background-color: var(--deep-green);
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-payment-methods__faq-question::-webkit-details-marker {
    display: none;
}

.page-payment-methods__faq-question:hover {
    background-color: var(--primary-color);
}

.page-payment-methods__faq-qtext {
    flex-grow: 1;
    color: var(--text-main);
}

.page-payment-methods__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 20px;
    color: var(--gold-color);
    transition: transform 0.3s ease;
}

.page-payment-methods__faq-item[open] .page-payment-methods__faq-toggle {
    transform: rotate(45deg);
}

.page-payment-methods__faq-answer {
    padding: 20px 25px;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    background-color: var(--card-bg);
}

.page-payment-methods__faq-answer p {
    margin-bottom: 0;
}

.page-payment-methods__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-payment-methods__btn-primary,
.page-payment-methods__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
}

.page-payment-methods__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 15px var(--glow-color);
}

.page-payment-methods__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-payment-methods__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-main);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-payment-methods__hero-content {
        margin-top: -200px;
        padding: 30px;
    }
    .page-payment-methods__hero-title {
        font-size: 3rem;
    }
    .page-payment-methods__section-title {
        font-size: 2.2rem;
    }
    .page-payment-methods__hero-image {
        height: 700px;
    }
}

@media (max-width: 768px) {
    .page-payment-methods__hero-image {
        height: 500px;
    }
    .page-payment-methods__hero-content {
        margin-top: -100px;
        padding: 20px;
        max-width: calc(100% - 30px);
    }
    .page-payment-methods__hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    .page-payment-methods__hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .page-payment-methods__hero-cta-buttons,
    .page-payment-methods__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .page-payment-methods__btn-primary,
    .page-payment-methods__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
    }

    .page-payment-methods__section {
        padding: 40px 0;
    }
    .page-payment-methods__container {
        padding: 0 15px;
    }
    .page-payment-methods__section-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    .page-payment-methods__section-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    .page-payment-methods__text-block,
    .page-payment-methods__card-text,
    .page-payment-methods__card-list li,
    .page-payment-methods__numbered-list li,
    .page-payment-methods__feature-list li,
    .page-payment-methods__faq-answer {
        font-size: 0.9rem;
    }
    .page-payment-methods__method-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    .page-payment-methods__card-title {
        font-size: 1.5rem;
    }
    .page-payment-methods__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-payment-methods__faq-toggle {
        font-size: 1.3rem;
    }
    /* Mobile image responsiveness */
    .page-payment-methods img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }
    .page-payment-methods__section,
    .page-payment-methods__card,
    .page-payment-methods__container,
    .page-payment-methods__hero-section,
    .page-payment-methods__overview-section,
    .page-payment-methods__deposit-methods,
    .page-payment-methods__withdrawal-guide,
    .page-payment-methods__security-features,
    .page-payment-methods__faq-section,
    .page-payment-methods__conclusion-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }
    .page-payment-methods__hero-section {
        padding-left: 0;
        padding-right: 0;
    }
    .page-payment-methods__hero-image {
        padding-left: 0;
        padding-right: 0;
    }
    .page-payment-methods__hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-payment-methods__faq-item {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .page-payment-methods__hero-image {
        height: 400px;
    }
    .page-payment-methods__hero-content {
        margin-top: -80px;
    }
    .page-payment-methods__hero-title {
        font-size: 1.8rem;
    }
    .page-payment-methods__section-title {
        font-size: 1.6rem;
    }
    .page-payment-methods__faq-question {
        font-size: 0.95rem;
    }
    .page-payment-methods__card-title {
        font-size: 1.3rem;
    }
}