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

:root {
    --primary-color: #0A2463;
    --secondary-color: #E34234;
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #f4f7f6;
    --background-dark: #0A2463;
    --border-color: #e0e0e0;
}

.page-index-review-tot88 {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

.page-index-review-tot88__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-index-review-tot88__section {
    padding: 60px 0;
    text-align: center;
}

.page-index-review-tot88__section:nth-of-type(even) {
    background-color: #e9ecef;
}

.page-index-review-tot88__section-title {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-index-review-tot88__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.page-index-review-tot88__paragraph {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555555;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-review-tot88__list {
    list-style-type: disc;
    text-align: left;
    max-width: 800px;
    margin: 20px auto;
    padding-left: 20px;
}

.page-index-review-tot88__list li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #444444;
}

/* Hero Section */
.page-index-review-tot88__hero {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-color: var(--background-dark);
    color: var(--text-light);
    overflow: hidden;
}

.page-index-review-tot88__hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.page-index-review-tot88__hero-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-index-review-tot88__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

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

.page-index-review-tot88__hero-description {
    font-size: 20px;
    margin-bottom: 30px;
    color: #e0e0e0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-review-tot88__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-review-tot88__cta-button:hover {
    background: #c7362c;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-index-review-tot88__cta-button--small {
    padding: 10px 25px;
    font-size: 16px;
    margin-top: 15px;
}

/* Product Grid */
.page-index-review-tot88__product-grid,
.page-index-review-tot88__promo-grid,
.page-index-review-tot88__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-review-tot88__product-card,
.page-index-review-tot88__promo-card,
.page-index-review-tot88__feature-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-index-review-tot88__product-card:hover,
.page-index-review-tot88__promo-card:hover,
.page-index-review-tot88__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-index-review-tot88__product-image,
.page-index-review-tot88__promo-image,
.page-index-review-tot88__feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-index-review-tot88__product-title,
.page-index-review-tot88__promo-title,
.page-index-review-tot88__feature-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-index-review-tot88__product-description {
    font-size: 16px;
    color: #666666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-index-review-tot88__card-button {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: auto; /* Push button to bottom */
}

.page-index-review-tot88__card-button:hover {
    background: #071a47;
}

/* Guide Section */
.page-index-review-tot88__guide-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 30px;
    text-align: left;
}

.page-index-review-tot88__guide-title {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Mobile App Section */
.page-index-review-tot88__mobile-app .page-index-review-tot88__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-index-review-tot88__app-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.page-index-review-tot88__app-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.page-index-review-tot88__app-text {
    text-align: left;
    max-width: 600px;
}

.page-index-review-tot88__app-subtitle {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* FAQ Section */
.page-index-review-tot88__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f5f5f5;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: var(--primary-color);
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: #f9f9f9;
    color: #555555;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to contain content */
    padding: 15px 25px;
    border-top: 1px solid var(--border-color);
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
}

/* Conclusion Section */
.page-index-review-tot88__conclusion {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 80px 0;
}

.page-index-review-tot88__conclusion .page-index-review-tot88__section-title {
    color: var(--text-light);
}

.page-index-review-tot88__conclusion .page-index-review-tot88__paragraph {
    color: #e0e0e0;
}

.page-index-review-tot88__conclusion .page-index-review-tot88__cta-button {
    background: var(--secondary-color);
    color: var(--text-light);
}

.page-index-review-tot88__conclusion .page-index-review-tot88__cta-button:hover {
    background: #c7362c;
}

.page-index-review-tot88__conclusion a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-index-review-tot88__conclusion a:hover {
    color: #ff776b;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-review-tot88__main-title {
        font-size: 42px;
    }
    .page-index-review-tot88__section-title {
        font-size: 30px;
    }
    .page-index-review-tot88__hero-image {
        border-radius: 8px;
    }
}

@media (max-width: 768px) {
    .page-index-review-tot88__hero {
        padding: 40px 15px;
    }
    .page-index-review-tot88__main-title {
        font-size: 32px;
    }
    .page-index-review-tot88__hero-description {
        font-size: 16px;
    }
    .page-index-review-tot88__cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    .page-index-review-tot88__section {
        padding: 40px 0;
    }
    .page-index-review-tot88__section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .page-index-review-tot88__paragraph {
        font-size: 15px;
    }
    .page-index-review-tot88__product-grid,
    .page-index-review-tot88__promo-grid,
    .page-index-review-tot88__feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-index-review-tot88__product-card,
    .page-index-review-tot88__promo-card,
    .page-index-review-tot88__feature-card {
        padding: 20px;
    }
    .page-index-review-tot88__product-title,
    .page-index-review-tot88__promo-title,
    .page-index-review-tot88__feature-title {
        font-size: 20px;
    }
    .page-index-review-tot88__guide-title {
        font-size: 22px;
    }
    .page-index-review-tot88__app-content {
        flex-direction: column;
    }
    .faq-question {
        padding: 15px 20px;
    }
    .faq-question h3 {
        font-size: 16px;
    }
    .faq-toggle {
        font-size: 20px;
    }
    .faq-answer {
        padding: 0 20px;
    }
    .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
    .page-index-review-tot88__conclusion {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .page-index-review-tot88__main-title {
        font-size: 28px;
    }
    .page-index-review-tot88__hero-description {
        font-size: 14px;
    }
    .page-index-review-tot88__cta-button {
        padding: 10px 25px;
        font-size: 14px;
    }
    .page-index-review-tot88__section-title {
        font-size: 22px;
    }
    .page-index-review-tot88__paragraph {
        font-size: 14px;
    }
    .page-index-review-tot88__product-image,
    .page-index-review-tot88__promo-image,
    .page-index-review-tot88__feature-image {
        height: 160px;
    }
}