/* style/index-review-fa88.css */

:root {
    --primary-color: #007BFF;
    --secondary-color: #28A745;
    --accent-color: #FFC107;
    --text-dark: #333333;
    --text-light: #f8f9fa;
    --background-light: #ffffff;
    --background-gray: #f1f3f5;
    --border-color: #e0e0e0;
}

/* Base styles for the page content, considering shared.css might set a dark body background */
.page-index-review-fa88 {
    color: var(--text-light); /* Default light text for potentially dark body background */
    background-color: transparent; /* Main content background will be set by sections */
    line-height: 1.7;
    font-family: 'Arial', sans-serif;
}

/* Ensure content is not hidden by fixed header */
.page-index-review-fa88__hero-review-banner {
    padding-top: 120px; /* Desktop: Adjust based on fixed header height */
}

.page-index-review-fa88__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-index-review-fa88__section-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-index-review-fa88__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-index-review-fa88__sub-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 35px;
    margin-bottom: 15px;
    text-align: left;
}

.page-index-review-fa88__text-block {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.page-index-review-fa88__text-block a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-index-review-fa88__text-block a:hover {
    text-decoration: underline;
}

.page-index-review-fa88__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 25px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* HERO Review Banner */
.page-index-review-fa88__hero-review-banner {
    background: linear-gradient(135deg, #007BFF, #28A745);
    padding: 60px 0;
    text-align: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.page-index-review-fa88__hero-review-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-index-review-fa88__hero-review-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.page-index-review-fa88__hero-review-content {
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

.page-index-review-fa88__hero-review-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.2;
}

.page-index-review-fa88__hero-review-description {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

.page-index-review-fa88__hero-review-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Review Content Section */
.page-index-review-fa88__review-section {
    padding: 60px 0;
    background: var(--background-gray); /* Light background for review content */
}

.page-index-review-fa88__content-card {
    background: var(--background-light);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    color: var(--text-dark); /* Dark text on light card background */
}

.page-index-review-fa88__content-card .page-index-review-fa88__section-title {
    color: var(--text-dark);
}

.page-index-review-fa88__content-card .page-index-review-fa88__section-title::after {
    background-color: var(--primary-color);
}

.page-index-review-fa88__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.page-index-review-fa88__cta-primary {
    background: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.page-index-review-fa88__cta-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.page-index-review-fa88__cta-secondary {
    background: var(--secondary-color);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.page-index-review-fa88__cta-secondary:hover {
    background: #1e7e34;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.page-index-review-fa88__cta-inline {
    margin-top: 20px;
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.page-index-review-fa88__final-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* FAQ Section */
.page-index-review-fa88__faq-section {
    padding: 60px 0;
    background: var(--background-gray);
}

.page-index-review-fa88__faq-list {
    margin-top: 30px;
}

.page-index-review-fa88__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-index-review-fa88__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-index-review-fa88__faq-question:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.page-index-review-fa88__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-dark);
    pointer-events: none;
}

.page-index-review-fa88__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: #666;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.page-index-review-fa88__faq-item.active .page-index-review-fa88__faq-toggle {
    color: var(--primary-color);
    transform: rotate(45deg);
}

.page-index-review-fa88__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 25px;
    opacity: 0;
    background: #f9f9f9;
    border-top: none;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 0 0 8px 8px;
}

.page-index-review-fa88__faq-item.active .page-index-review-fa88__faq-answer {
    max-height: 2000px !important; /* Sufficiently large value */
    padding: 20px 25px !important;
    opacity: 1;
}

.page-index-review-fa88__faq-answer p {
    margin-bottom: 0;
    font-size: 16px;
    color: var(--text-dark);
}

.page-index-review-fa88__faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-index-review-fa88__faq-answer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-review-fa88__hero-review-title {
        font-size: 36px;
    }
    .page-index-review-fa88__hero-review-description {
        font-size: 17px;
    }
    .page-index-review-fa88__section-title {
        font-size: 28px;
    }
    .page-index-review-fa88__sub-title {
        font-size: 22px;
    }
    .page-index-review-fa88__content-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .page-index-review-fa88__hero-review-banner {
        padding-top: 100px; /* Mobile: Adjust based on fixed header height */
        padding-bottom: 40px;
    }
    .page-index-review-fa88__hero-review-title {
        font-size: 30px;
    }
    .page-index-review-fa88__hero-review-description {
        font-size: 16px;
    }
    .page-index-review-fa88__hero-review-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-review-fa88__cta-button {
        width: 100%;
        max-width: 300px;
        padding: 12px 20px;
        font-size: 16px;
    }
    .page-index-review-fa88__section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .page-index-review-fa88__sub-title {
        font-size: 20px;
        margin-top: 30px;
    }
    .page-index-review-fa88__text-block {
        font-size: 15px;
    }
    .page-index-review-fa88__review-section,
    .page-index-review-fa88__faq-section {
        padding: 40px 0;
    }
    .page-index-review-fa88__content-card {
        padding: 25px;
    }
    .page-index-review-fa88__faq-question {
        padding: 15px 20px;
    }
    .page-index-review-fa88__faq-question h3 {
        font-size: 16px;
    }
    .page-index-review-fa88__faq-toggle {
        font-size: 24px;
        width: 28px;
        height: 28px;
    }
    .page-index-review-fa88__faq-answer {
        padding: 0 20px;
    }
    .page-index-review-fa88__faq-item.active .page-index-review-fa88__faq-answer {
        padding: 15px 20px !important;
    }
    .page-index-review-fa88__final-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-review-fa88 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-index-review-fa88__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}