/* style/payment-methods-faq.css */
.page-payment-methods-faq {
    font-family: 'Arial', sans-serif;
    color: #333333;
    line-height: 1.6;
}

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

.page-payment-methods-faq__hero {
    background: linear-gradient(135deg, #003366, #1a4d80);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-payment-methods-faq__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFCC00;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-payment-methods-faq__hero-subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #e0e0e0;
}

.page-payment-methods-faq__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
}

.page-payment-methods-faq__btn--primary {
    background-color: #FFCC00;
    color: #003366;
    border: 2px solid #FFCC00;
}

.page-payment-methods-faq__btn--primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-payment-methods-faq__btn--secondary {
    background-color: #003366;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-payment-methods-faq__btn--secondary:hover {
    background-color: #002244;
    border-color: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-payment-methods-faq__btn--outline {
    background-color: transparent;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-payment-methods-faq__btn--outline:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-payment-methods-faq__section {
    padding: 60px 0;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eeeeee;
}

.page-payment-methods-faq__section:nth-of-type(even) {
    background-color: #ffffff;
}

.page-payment-methods-faq__section-title {
    font-size: 2.2em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-payment-methods-faq__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.page-payment-methods-faq__content-wrapper:nth-of-type(even) {
    flex-direction: row-reverse;
}

.page-payment-methods-faq__text-content {
    flex: 1;
}

.page-payment-methods-faq__text-content p {
    margin-bottom: 15px;
    color: #444444;
}

.page-payment-methods-faq__text-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
    color: #444444;
}

.page-payment-methods-faq__text-content ul li {
    margin-bottom: 8px;
}

.page-payment-methods-faq__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-payment-methods-faq__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

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

.page-payment-methods-faq__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;
    border: 1px solid #e0e0e0;
}

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

.page-payment-methods-faq__card-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
}

.page-payment-methods-faq__card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-payment-methods-faq__card p {
    color: #555555;
    margin-bottom: 15px;
}

.page-payment-methods-faq__card ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
    color: #555555;
}

.page-payment-methods-faq__card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.page-payment-methods-faq__card ul li::before {
    content: '✓';
    color: #FFCC00;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.page-payment-methods-faq__card--single {
    grid-column: 1 / -1; /* Make it span all columns */
    max-width: 800px;
    margin: 0 auto;
}

.page-payment-methods-faq__cta-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px dashed #e0e0e0;
}

.page-payment-methods-faq__cta-bottom p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #003366;
    font-weight: 600;
}

.page-payment-methods-faq__faq-section {
    background-color: #f0f4f8;
}

.page-payment-methods-faq__accordion {
    margin-top: 40px;
}

.page-payment-methods-faq__accordion-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-payment-methods-faq__accordion-header {
    padding: 20px;
    background-color: #003366;
    color: #FFCC00;
    cursor: pointer;
    font-size: 1.3em;
    font-weight: bold;
    position: relative;
    user-select: none;
    transition: background-color 0.3s ease;
}

.page-payment-methods-faq__accordion-header:hover {
    background-color: #002244;
}

.page-payment-methods-faq__accordion-header::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-payment-methods-faq__accordion-item.active .page-payment-methods-faq__accordion-header::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-payment-methods-faq__accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: #fefefe;
    color: #444444;
}

.page-payment-methods-faq__accordion-content p {
    margin-top: 15px;
    margin-bottom: 15px;
}

.page-payment-methods-faq__accordion-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.page-payment-methods-faq__accordion-content ul li {
    margin-bottom: 5px;
}

.page-payment-methods-faq__accordion-item.active .page-payment-methods-faq__accordion-content {
    max-height: 500px; /* Adjust based on expected content height */
    padding: 20px;
}

.page-payment-methods-faq__contact-support .page-payment-methods-faq__content-wrapper {
    flex-direction: row;
}

.page-payment-methods-faq__join-us {
    background-color: #003366;
    color: #ffffff;
    text-align: center;
}

.page-payment-methods-faq__join-us .page-payment-methods-faq__section-title {
    color: #FFCC00;
}

.page-payment-methods-faq__join-us .page-payment-methods-faq__section-title::after {
    background-color: #FFCC00;
}

.page-payment-methods-faq__join-us p {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

.page-payment-methods-faq__cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-payment-methods-faq__hero-title {
        font-size: 2.2em;
    }

    .page-payment-methods-faq__section-title {
        font-size: 1.8em;
    }

    .page-payment-methods-faq__content-wrapper {
        flex-direction: column;
    }

    .page-payment-methods-faq__content-wrapper:nth-of-type(even) {
        flex-direction: column;
    }

    .page-payment-methods-faq__image-wrapper {
        order: -1; /* Image appears above text on mobile for some sections */
        margin-bottom: 30px;
    }

    .page-payment-methods-faq__contact-support .page-payment-methods-faq__image-wrapper {
      order: 0;
    }

    .page-payment-methods-faq__accordion-header {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-payment-methods-faq__hero {
        padding: 60px 0;
    }

    .page-payment-methods-faq__hero-title {
        font-size: 1.8em;
    }

    .page-payment-methods-faq__hero-subtitle {
        font-size: 1em;
    }

    .page-payment-methods-faq__section {
        padding: 40px 0;
    }

    .page-payment-methods-faq__section-title {
        font-size: 1.6em;
    }

    .page-payment-methods-faq__grid {
        grid-template-columns: 1fr;
    }

    .page-payment-methods-faq__card {
        padding: 20px;
    }

    .page-payment-methods-faq__accordion-header {
        padding: 15px;
        font-size: 1em;
    }

    .page-payment-methods-faq__accordion-header::after {
        right: 15px;
        font-size: 1.2em;
    }

    .page-payment-methods-faq__accordion-content {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .page-payment-methods-faq__container {
        padding: 15px;
    }

    .page-payment-methods-faq__hero-title {
        font-size: 1.5em;
    }

    .page-payment-methods-faq__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-payment-methods-faq__cta-group .page-payment-methods-faq__btn {
        width: 100%;
        margin-bottom: 10px; /* Adjust for stacked buttons */
    }

    .page-payment-methods-faq__cta-group {
        flex-direction: column;
    }
}