/* style/resources-vivu88-faq.css */
.page-resources-vivu88-faq {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-resources-vivu88-faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-resources-vivu88-faq-hero {
    background: linear-gradient(135deg, #003366, #1a4d7d);
    color: #ffffff;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.page-resources-vivu88-faq-hero-content {
    max-width: 800px;
    z-index: 1;
}

.page-resources-vivu88-faq-hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFCC00;
    font-weight: bold;
    line-height: 1.2;
}

.page-resources-vivu88-faq-hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-resources-vivu88-faq-hero-cta {
    display: inline-block;
    background-color: #FFCC00;
    color: #003366;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources-vivu88-faq-hero-cta:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.page-resources-vivu88-faq-hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    overflow: hidden;
    z-index: 0;
}

.page-resources-vivu88-faq-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

/* Section Titles */
.page-resources-vivu88-faq-section-title {
    font-size: 2.2em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    position: relative;
}

.page-resources-vivu88-faq-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFCC00;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Accordion Styling */
.page-resources-vivu88-faq-accordion {
    margin-top: 30px;
}

.page-resources-vivu88-faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.page-resources-vivu88-faq-question {
    padding: 20px 25px;
    background-color: #003366;
    color: #ffffff;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-resources-vivu88-faq-question:hover {
    background-color: #1a4d7d;
}

.page-resources-vivu88-faq-question::after {
    content: '+';
    font-size: 1.5em;
    font-weight: normal;
    transition: transform 0.3s ease;
}

.page-resources-vivu88-faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-resources-vivu88-faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: #fefefe;
    color: #333;
}

.page-resources-vivu88-faq-answer.active {
    max-height: 1000px;
    padding: 20px 25px;
}

.page-resources-vivu88-faq-answer p {
    margin-bottom: 15px;
}

.page-resources-vivu88-faq-answer ul,
.page-resources-vivu88-faq-answer ol {
    margin-bottom: 15px;
    padding-left: 25px;
}

.page-resources-vivu88-faq-answer li {
    margin-bottom: 8px;
}

.page-resources-vivu88-faq-answer a {
    color: #003366;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-vivu88-faq-answer a:hover {
    color: #FFCC00;
}

/* General button styling */
.page-resources-vivu88-faq-link-btn,
.page-resources-vivu88-faq-download-btn,
.page-resources-vivu88-faq-promotion-btn,
.page-resources-vivu88-faq-contact-btn {
    display: inline-block;
    background-color: #FFCC00;
    color: #003366;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources-vivu88-faq-link-btn:hover,
.page-resources-vivu88-faq-download-btn:hover,
.page-resources-vivu88-faq-promotion-btn:hover,
.page-resources-vivu88-faq-contact-btn:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

/* Images within FAQ answers */
.page-resources-vivu88-faq-image-small {
    max-width: 50%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-vivu88-faq-image-large {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Call to Action Section */
.page-resources-vivu88-faq-call-to-action {
    background: linear-gradient(45deg, #003366, #001a33);
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    margin-top: 40px;
}

.page-resources-vivu88-faq-cta-content {
    max-width: 900px;
}

.page-resources-vivu88-faq-cta-title {
    font-size: 2.5em;
    color: #FFCC00;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-resources-vivu88-faq-cta-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-resources-vivu88-faq-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-resources-vivu88-faq-cta-btn {
    display: inline-block;
    background-color: #FFCC00;
    color: #003366;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    min-width: 150px;
}

.page-resources-vivu88-faq-cta-btn:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-resources-vivu88-faq-hero {
        padding: 60px 15px;
    }

    .page-resources-vivu88-faq-hero-title {
        font-size: 2em;
    }

    .page-resources-vivu88-faq-hero-description {
        font-size: 1em;
    }

    .page-resources-vivu88-faq-section-title {
        font-size: 1.8em;
    }

    .page-resources-vivu88-faq-question {
        font-size: 1.1em;
        padding: 18px 20px;
    }

    .page-resources-vivu88-faq-answer {
        padding: 15px 20px;
    }

    .page-resources-vivu88-faq-image-small,
    .page-resources-vivu88-faq-image-large {
        max-width: 90%;
    }

    .page-resources-vivu88-faq-cta-title {
        font-size: 2em;
    }

    .page-resources-vivu88-faq-cta-description {
        font-size: 1em;
    }

    .page-resources-vivu88-faq-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-resources-vivu88-faq-cta-btn {
        width: 80%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .page-resources-vivu88-faq-hero {
        padding: 40px 10px;
    }

    .page-resources-vivu88-faq-hero-title {
        font-size: 1.6em;
    }

    .page-resources-vivu88-faq-hero-description {
        font-size: 0.9em;
    }

    .page-resources-vivu88-faq-hero-cta {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-resources-vivu88-faq-section-title {
        font-size: 1.5em;
    }

    .page-resources-vivu88-faq-question {
        font-size: 1em;
        padding: 15px;
    }

    .page-resources-vivu88-faq-answer {
        padding: 10px 15px;
    }

    .page-resources-vivu88-faq-cta-title {
        font-size: 1.8em;
    }

    .page-resources-vivu88-faq-cta-description {
        font-size: 0.9em;
    }

    .page-resources-vivu88-faq-cta-btn {
        width: 90%;
        font-size: 1em;
        padding: 12px 20px;
    }
}