/* style/resources-j88-faq.css */

.page-resources-j88-faq {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

/* Hero Section */
.page-resources-j88-faq__hero {
    background: linear-gradient(135deg, #4B0082, #814da8);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-j88-faq__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_purple_gold,geometric_pattern,light_effect]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-resources-j88-faq__hero > .page-resources-j88-faq__container {
    position: relative;
    z-index: 1;
}

.page-resources-j88-faq__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #FFC107; /* Golden Yellow for emphasis */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-resources-j88-faq__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-resources-j88-faq__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-resources-j88-faq__btn {
    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, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-j88-faq__btn--primary {
    background-color: #FFC107;
    color: #4B0082; /* Deep Purple for contrast */
    border: 2px solid #FFC107;
}

.page-resources-j88-faq__btn--primary:hover {
    background-color: #e6b000;
    transform: translateY(-2px);
}

.page-resources-j88-faq__btn--secondary {
    background-color: transparent;
    color: #FFC107;
    border: 2px solid #FFC107;
}

.page-resources-j88-faq__btn--secondary:hover {
    background-color: rgba(255, 193, 7, 0.1);
    transform: translateY(-2px);
}

/* FAQ Section */
.page-resources-j88-faq__faq-section {
    padding: 60px 0;
    background-color: #fff;
}

.page-resources-j88-faq__section-title {
    font-size: 2.5em;
    color: #4B0082;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-resources-j88-faq__section-description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-j88-faq__accordion {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.page-resources-j88-faq__accordion-item {
    border-bottom: 1px solid #eee;
}

.page-resources-j88-faq__accordion-item:last-child {
    border-bottom: none;
}

.page-resources-j88-faq__accordion-header {
    background-color: #f0f0f0;
    color: #4B0082;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.3em;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-resources-j88-faq__accordion-header:hover {
    background-color: #e5e5e5;
}

.page-resources-j88-faq__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    color: #FFC107;
    transition: transform 0.3s ease;
}

.page-resources-j88-faq__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-resources-j88-faq__accordion-content {
    padding: 0 25px;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-resources-j88-faq__accordion-content.active {
    max-height: 1000px; /* Adjust as needed for content height */
    padding: 20px 25px;
}

.page-resources-j88-faq__accordion-content p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #444;
}

.page-resources-j88-faq__accordion-content ul,
.page-resources-j88-faq__accordion-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
    list-style-type: disc;
    color: #444;
}

.page-resources-j88-faq__accordion-content ol {
    list-style-type: decimal;
}

.page-resources-j88-faq__accordion-content li {
    margin-bottom: 8px;
    font-size: 1.05em;
}

.page-resources-j88-faq__accordion-content strong {
    color: #4B0082;
}

.page-resources-j88-faq__accordion-content a {
    color: #4B0082;
    text-decoration: underline;
}

.page-resources-j88-faq__accordion-content a:hover {
    color: #FFC107;
}

.page-resources-j88-faq__img-inline {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-j88-faq__btn--accent {
    background-color: #FFC107;
    color: #4B0082;
    border: 2px solid #FFC107;
    margin-top: 20px;
    display: inline-block;
}

.page-resources-j88-faq__btn--accent:hover {
    background-color: #e6b000;
    transform: translateY(-2px);
}

.page-resources-j88-faq__app-download-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
    justify-content: center;
}

/* CTA Bottom */
.page-resources-j88-faq__cta-bottom {
    background-color: #4B0082;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
    border-radius: 10px;
    margin-top: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-j88-faq__cta-title {
    font-size: 2.2em;
    color: #FFC107;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-j88-faq__cta-description {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: #e0e0e0;
}

.page-resources-j88-faq__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-j88-faq__hero {
        padding: 60px 0;
    }

    .page-resources-j88-faq__hero-title {
        font-size: 2.5em;
    }

    .page-resources-j88-faq__hero-subtitle {
        font-size: 1em;
    }

    .page-resources-j88-faq__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-resources-j88-faq__btn {
        width: 80%;
        margin: 0 auto;
    }

    .page-resources-j88-faq__section-title {
        font-size: 2em;
    }

    .page-resources-j88-faq__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-resources-j88-faq__accordion-content.active {
        padding: 15px 20px;
    }

    .page-resources-j88-faq__cta-title {
        font-size: 1.8em;
    }

    .page-resources-j88-faq__btn--large {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .page-resources-j88-faq__hero-title {
        font-size: 2em;
    }

    .page-resources-j88-faq__btn {
        width: 95%;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-resources-j88-faq__section-title {
        font-size: 1.8em;
    }

    .page-resources-j88-faq__accordion-header {
        font-size: 1em;
    }

    .page-resources-j88-faq__cta-title {
        font-size: 1.5em;
    }
}