.page-payment-methods {
    color: #333333; /* Dark text for light body background #f4f4f4 */
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.page-payment-methods__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    background-color: #1A2B3C; /* Auxiliary dark blue for hero background behind image */
}

.page-payment-methods__hero-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.page-payment-methods__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-payment-methods__hero-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
    max-width: 900px;
}

.page-payment-methods__hero-title {
    font-size: 3.2em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
}

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

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

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

.page-payment-methods__button--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A2B3C; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-payment-methods__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-payment-methods__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-payment-methods__button--secondary:hover {
    background-color: #FFD700;
    color: #1A2B3C;
    transform: translateY(-3px);
}

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

.page-payment-methods__section-title {
    font-size: 2.5em;
    color: #1A2B3C; /* Dark blue title */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

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

.page-payment-methods__why-choose-section {
    background-color: #f9f9f9;
}

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

.page-payment-methods__feature-card,
.page-payment-methods__method-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods__feature-card:hover,
.page-payment-methods__method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-payment-methods__feature-icon {
    width: 250px; /* Ensure min width */
    height: 187px; /* Ensure min height */
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-payment-methods__feature-title,
.page-payment-methods__method-title {
    font-size: 1.6em;
    color: #1A2B3C;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-payment-methods__feature-description,
.page-payment-methods__method-description {
    font-size: 1em;
    color: #666666;
    margin-bottom: 20px;
}

.page-payment-methods__method-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-payment-methods__method-details {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 20px;
}

.page-payment-methods__method-details li {
    margin-bottom: 8px;
    font-size: 0.95em;
    color: #444444;
}

.page-payment-methods__deposit-section,
.page-payment-methods__withdrawal-section {
    background-color: #f4f4f4;
}

.page-payment-methods__guide-section {
    background-color: #f9f9f9;
}

.page-payment-methods__guide-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.page-payment-methods__guide-title {
    font-size: 2em;
    color: #FFD700; /* Gold title */
    margin-bottom: 25px;
    text-align: center;
}

.page-payment-methods__guide-list {
    list-style: decimal;
    padding-left: 25px;
    margin-bottom: 30px;
    max-width: 700px;
    text-align: left;
}

.page-payment-methods__guide-list li {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #333333;
}

.page-payment-methods__guide-list li strong {
    color: #1A2B3C;
}

.page-payment-methods__guide-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-payment-methods__security-section {
    background-color: #1A2B3C;
    color: #ffffff;
}

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

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

.page-payment-methods__security-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 40px auto;
}

.page-payment-methods__security-list li {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #FFD700;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #ffffff;
}

.page-payment-methods__security-list li strong {
    color: #FFD700;
}

.page-payment-methods__security-closing {
    text-align: center;
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto;
    color: #e0e0e0;
}

.page-payment-methods__faq-section {
    background-color: #f4f4f4;
}

.page-payment-methods__faq-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 40px auto;
}

.page-payment-methods__faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 25px;
    transition: box-shadow 0.3s ease;
}

.page-payment-methods__faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.page-payment-methods__faq-answer {
    font-size: 1em;
    color: #555555;
    line-height: 1.7;
}

.page-payment-methods__support-section {
    background-color: #f9f9f9;
    text-align: center;
}

.page-payment-methods__support-contact {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.page-payment-methods__support-text {
    font-size: 1.1em;
    color: #444444;
}

.page-payment-methods__cta-section {
    background-color: #1A2B3C;
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
}

.page-payment-methods__cta-section .page-payment-methods__section-title {
    color: #FFD700;
}

.page-payment-methods__cta-section .page-payment-methods__section-intro {
    color: #e0e0e0;
}

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

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

@media (max-width: 768px) {
    .page-payment-methods__hero-title {
        font-size: 2.2em;
    }
    .page-payment-methods__hero-description {
        font-size: 1em;
    }
    .page-payment-methods__button {
        padding: 12px 25px;
        font-size: 1em;
        min-width: unset;
        width: 100%;
    }
    .page-payment-methods__hero-actions {
        flex-direction: column;
    }
    .page-payment-methods__section {
        padding: 40px 15px;
    }
    .page-payment-methods__section-title {
        font-size: 1.8em;
    }
    .page-payment-methods__guide-title {
        font-size: 1.6em;
    }
    .page-payment-methods__guide-block {
        flex-direction: column;
    }
    .page-payment-methods__guide-list {
        padding-left: 20px;
    }
    .page-payment-methods__guide-list li {
        font-size: 1em;
    }
    .page-payment-methods__guide-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce min size */
        min-height: 200px; /* Enforce min size */
    }
    .page-payment-methods__feature-icon,
    .page-payment-methods__method-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce min size */
        min-height: 200px; /* Enforce min size */
    }
    /* Ensure all images within content area 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: 1.8em;
    }
    .page-payment-methods__section-title {
        font-size: 1.6em;
    }
    .page-payment-methods__feature-card,
    .page-payment-methods__method-card {
        padding: 20px;
    }
    .page-payment-methods__faq-question {
        font-size: 1.1em;
    }
    .page-payment-methods__faq-answer {
        font-size: 0.9em;
    }
}