.page-index-payment-methods-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #FFF6D6; /* Text Main */
    background-color: #0A0A0A; /* Background */
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

.page-index-payment-methods-guide__hero-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 40px; /* Adjust as needed */
    background-color: #0A0A0A; /* Ensures consistent background below image if image isn't full height */
}

.page-index-payment-methods-guide__hero-content {
    display: flex;
    flex-direction: column; /* Image on top, text below */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-payment-methods-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    margin-bottom: 30px; /* Space between image and text block */
}

.page-index-payment-methods-guide__hero-text-block {
    text-align: center;
    max-width: 800px;
}

.page-index-payment-methods-guide__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
    font-weight: 700;
    color: #FFD36B; /* Glow color for emphasis */
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.page-index-payment-methods-guide__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #FFF6D6;
}

.page-index-payment-methods-guide__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.8em);
    font-weight: 700;
    color: #F2C14E; /* Main color */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

.page-index-payment-methods-guide__sub-title {
    font-size: clamp(1.4em, 2.5vw, 2em);
    font-weight: 600;
    color: #FFD36B; /* Auxiliary color */
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: left; /* Default for content sections */
}

.page-index-payment-methods-guide__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
}

.page-index-payment-methods-guide p {
    margin-bottom: 15px;
    color: #FFF6D6;
}

.page-index-payment-methods-guide strong {
    color: #FFD36B;
}

.page-index-payment-methods-guide__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    width: 100%; /* Ensure container takes full width */
    max-width: 100%;
    box-sizing: border-box;
}

.page-index-payment-methods-guide__btn-primary,
.page-index-payment-methods-guide__btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    box-sizing: border-box;
    max-width: 100%; /* Ensure button doesn't overflow */
}

.page-index-payment-methods-guide__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
    color: #111111; /* Dark text for contrast on bright button */
    border: none;
}

.page-index-payment-methods-guide__btn-primary:hover {
    background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-index-payment-methods-guide__btn-secondary {
    background-color: transparent;
    color: #F2C14E; /* Main color */
    border: 2px solid #F2C14E; /* Border color */
}

.page-index-payment-methods-guide__btn-secondary:hover {
    background-color: #F2C14E;
    color: #111111; /* Dark text for contrast */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 193, 78, 0.2);
}

.page-index-payment-methods-guide__payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-index-payment-methods-guide__card {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #FFF6D6; /* Text Main */
}

.page-index-payment-methods-guide__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(242, 193, 78, 0.15);
}

.page-index-payment-methods-guide__payment-icon {
    width: 100%; /* Ensure images are responsive within card */
    max-width: 200px; /* Example max size */
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 5px;
}

.page-index-payment-methods-guide__card-title {
    font-size: 1.5em;
    color: #FFD36B; /* Auxiliary color */
    margin-bottom: 10px;
}

.page-index-payment-methods-guide__step-list,
.page-index-payment-methods-guide__list {
    list-style: none;
    padding: 0;
    margin-left: 20px;
    color: #FFF6D6;
}

.page-index-payment-methods-guide__step-list li,
.page-index-payment-methods-guide__list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.page-index-payment-methods-guide__step-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #F2C14E; /* Main color */
    color: #111111; /* Dark text for contrast */
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8em;
    font-weight: bold;
}

.page-index-payment-methods-guide__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #F2C14E; /* Main color */
    font-size: 1.2em;
    line-height: 1;
}


.page-index-payment-methods-guide__note {
    background-color: rgba(242, 193, 78, 0.1);
    border-left: 5px solid #F2C14E;
    padding: 15px 20px;
    margin-top: 30px;
    border-radius: 5px;
    color: #FFF6D6;
}

.page-index-payment-methods-guide__cta-center {
    text-align: center;
    margin-top: 40px;
}

.page-index-payment-methods-guide__dark-section {
    background-color: #111111; /* Card BG, slightly darker than main background for contrast */
    padding: 40px 20px;
    margin-top: 40px;
    border-radius: 10px;
    border: 1px solid #3A2A12; /* Border */
}

.page-index-payment-methods-guide__security-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* FAQ Styles */
.page-index-payment-methods-guide__faq-list {
    margin-top: 30px;
}

.page-index-payment-methods-guide__faq-item {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #FFF6D6;
}

.page-index-payment-methods-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1em;
    color: #FFD36B; /* Auxiliary color */
    transition: background-color 0.3s ease;
}

.page-index-payment-methods-guide__faq-question:hover {
    background-color: rgba(242, 193, 78, 0.1);
}

.page-index-payment-methods-guide__faq-question h3 {
    margin: 0;
    color: inherit;
}

.page-index-payment-methods-guide__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #F2C14E; /* Main color */
}

.page-index-payment-methods-guide__faq-item.active .page-index-payment-methods-guide__faq-toggle {
    transform: rotate(45deg);
}

.page-index-payment-methods-guide__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #FFF6D6;
}

.page-index-payment-methods-guide__faq-item.active .page-index-payment-methods-guide__faq-answer {
    max-height: 1000px !important; /* Sufficiently large value */
    padding: 15px 25px 20px 25px; /* Adjust padding when active */
}

.page-index-payment-methods-guide__faq-answer p {
    margin: 0;
    color: #FFF6D6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-payment-methods-guide__hero-image {
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .page-index-payment-methods-guide {
        font-size: 16px;
        line-height: 1.6;
        padding-top: var(--header-offset, 100px) !important; /* Mobile header offset */
    }

    .page-index-payment-methods-guide__hero-content {
        padding: 0 15px;
    }
}