/* style/brand-reviews-g88-customer-service.css */

:root {
    --page-g88-primary-color: #1A237E;
    --page-g88-secondary-color: #FFC107;
    --page-g88-text-dark: #333;
    --page-g88-text-light: #f8f8f8;
    --page-g88-background-light: #ffffff;
    --page-g88-background-dark: #2c3e50;
    --page-g88-accent-color: #e5dc81; /* Complementary to primary */
    --page-g88-button-hover: #e0ac00;
}

.page-brand-reviews-g88-customer-service {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-g88-text-dark);
    background-color: var(--page-g88-background-light);
}

.page-brand-reviews-g88-customer-service__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-brand-reviews-g88-customer-service__hero-section {
    background: linear-gradient(135deg, var(--page-g88-primary-color), var(--page-g88-secondary-color));
    color: var(--page-g88-text-light);
    padding: 100px 0;
    text-align: center;
}

.page-brand-reviews-g88-customer-service__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-g88-text-light);
    line-height: 1.2;
}

.page-brand-reviews-g88-customer-service__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.page-brand-reviews-g88-customer-service__cta-button {
    display: inline-block;
    background-color: var(--page-g88-secondary-color);
    color: var(--page-g88-primary-color);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-brand-reviews-g88-customer-service__cta-button:hover {
    background-color: var(--page-g88-button-hover);
    transform: translateY(-3px);
}

.page-brand-reviews-g88-customer-service__content-section {
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.page-brand-reviews-g88-customer-service__content-section .page-brand-reviews-g88-customer-service__container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.page-brand-reviews-g88-customer-service__article {
    flex: 3;
    min-width: 600px;
    background-color: var(--page-g88-background-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-brand-reviews-g88-customer-service__sidebar {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page-brand-reviews-g88-customer-service__heading {
    font-size: 2.2em;
    color: var(--page-g88-primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--page-g88-secondary-color);
    padding-bottom: 10px;
}

.page-brand-reviews-g88-customer-service__sub-heading {
    font-size: 1.6em;
    color: var(--page-g88-primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-brand-reviews-g88-customer-service__article p {
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 1.05em;
}

.page-brand-reviews-g88-customer-service__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-brand-reviews-g88-customer-service__list li {
    margin-bottom: 8px;
    font-size: 1.05em;
}

.page-brand-reviews-g88-customer-service__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-brand-reviews-g88-customer-service__cta-wrapper {
    text-align: center;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.page-brand-reviews-g88-customer-service__cta-button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-brand-reviews-g88-customer-service__cta-button--secondary {
    background-color: var(--page-g88-primary-color);
    color: var(--page-g88-text-light);
}

.page-brand-reviews-g88-customer-service__cta-button--secondary:hover {
    background-color: #0d1252;
    transform: translateY(-3px);
}

.page-brand-reviews-g88-customer-service__promo-card,
.page-brand-reviews-g88-customer-service__contact-card {
    background-color: var(--page-g88-background-light);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-brand-reviews-g88-customer-service__card-title {
    font-size: 1.8em;
    color: var(--page-g88-primary-color);
    margin-bottom: 15px;
}

.page-brand-reviews-g88-customer-service__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-brand-reviews-g88-customer-service__promo-button {
    display: block;
    background-color: var(--page-g88-secondary-color);
    color: var(--page-g88-primary-color);
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-brand-reviews-g88-customer-service__promo-button:hover {
    background-color: var(--page-g88-button-hover);
    transform: translateY(-2px);
}

.page-brand-reviews-g88-customer-service__faq-section {
    background-color: #f5f5f5;
    padding: 60px 0;
}

.page-brand-reviews-g88-customer-service__faq-section .page-brand-reviews-g88-customer-service__heading {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: none;
    padding-bottom: 0;
}

.page-brand-reviews-g88-customer-service__faq-item {
    background-color: var(--page-g88-background-light);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.page-brand-reviews-g88-customer-service__faq-question {
    font-size: 1.3em;
    color: var(--page-g88-primary-color);
    margin-bottom: 10px;
    cursor: pointer;
}

.page-brand-reviews-g88-customer-service__faq-answer {
    font-size: 1em;
    color: var(--page-g88-text-dark);
    padding-left: 10px;
    border-left: 3px solid var(--page-g88-secondary-color);
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-brand-reviews-g88-customer-service__hero-title {
        font-size: 2.8em;
    }

    .page-brand-reviews-g88-customer-service__hero-subtitle {
        font-size: 1.2em;
    }

    .page-brand-reviews-g88-customer-service__content-section .page-brand-reviews-g88-customer-service__container {
        flex-direction: column;
        align-items: center;
    }

    .page-brand-reviews-g88-customer-service__article,
    .page-brand-reviews-g88-customer-service__sidebar {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-brand-reviews-g88-customer-service__hero-section {
        padding: 80px 0;
    }

    .page-brand-reviews-g88-customer-service__hero-title {
        font-size: 2.2em;
    }

    .page-brand-reviews-g88-customer-service__hero-subtitle {
        font-size: 1em;
    }

    .page-brand-reviews-g88-customer-service__heading {
        font-size: 1.8em;
    }

    .page-brand-reviews-g88-customer-service__sub-heading {
        font-size: 1.4em;
    }

    .page-brand-reviews-g88-customer-service__cta-wrapper {
        flex-direction: column;
    }

    .page-brand-reviews-g88-customer-service__cta-button,
    .page-brand-reviews-g88-customer-service__cta-button--large,
    .page-brand-reviews-g88-customer-service__promo-button {
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .page-brand-reviews-g88-customer-service__hero-section {
        padding: 60px 0;
    }

    .page-brand-reviews-g88-customer-service__hero-title {
        font-size: 1.8em;
    }

    .page-brand-reviews-g88-customer-service__hero-subtitle {
        font-size: 0.9em;
    }

    .page-brand-reviews-g88-customer-service__heading {
        font-size: 1.6em;
    }

    .page-brand-reviews-g88-customer-service__sub-heading {
        font-size: 1.2em;
    }

    .page-brand-reviews-g88-customer-service__article,
    .page-brand-reviews-g88-customer-service__sidebar {
        padding: 20px;
    }

    .page-brand-reviews-g88-customer-service__faq-question {
        font-size: 1.1em;
    }
}