/* style/platform-reviews-tt88-customer-service.css */
.page-platform-reviews-tt88-customer-service {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-platform-reviews-tt88-customer-service__hero-section {
    background: linear-gradient(135deg, #FF4500, #FFD700);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.page-platform-reviews-tt88-customer-service__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-platform-reviews-tt88-customer-service__hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    opacity: 0.2;
}

.page-platform-reviews-tt88-customer-service__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%) blur(5px);
}

.page-platform-reviews-tt88-customer-service__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-platform-reviews-tt88-customer-service__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #eee;
}

.page-platform-reviews-tt88-customer-service__cta-button {
    display: inline-block;
    background-color: #00baff; /* Complementary to FF4500 */
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-platform-reviews-tt88-customer-service__cta-button:hover {
    background-color: #0099cc;
    transform: translateY(-3px);
}

.page-platform-reviews-tt88-customer-service__cta-button--secondary {
    background-color: #FF4500;
    margin-left: 15px;
}

.page-platform-reviews-tt88-customer-service__cta-button--secondary:hover {
    background-color: #cc3700;
}

.page-platform-reviews-tt88-customer-service__cta-button--primary {
    background-color: #FFD700;
    color: #333;
    margin-top: 20px;
}

.page-platform-reviews-tt88-customer-service__cta-button--primary:hover {
    background-color: #e6c200;
}

.page-platform-reviews-tt88-customer-service__cta-button--final {
    background-color: #FF4500;
    margin-top: 40px;
    font-size: 1.3em;
    padding: 18px 35px;
}

.page-platform-reviews-tt88-customer-service__cta-button--final:hover {
    background-color: #cc3700;
}

.page-platform-reviews-tt88-customer-service__content-section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-platform-reviews-tt88-customer-service__content-section:nth-of-type(even) {
    background-color: #f0f0f0;
}

.page-platform-reviews-tt88-customer-service__section-title {
    font-size: 2.5em;
    color: #FF4500;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-platform-reviews-tt88-customer-service__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-platform-reviews-tt88-customer-service__content-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
}

.page-platform-reviews-tt88-customer-service__feature-grid, 
.page-platform-reviews-tt88-customer-service__assessment-grid, 
.page-platform-reviews-tt88-customer-service__testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-platform-reviews-tt88-customer-service__feature-item, 
.page-platform-reviews-tt88-customer-service__assessment-item, 
.page-platform-reviews-tt88-customer-service__testimonial-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #FF4500;
}

.page-platform-reviews-tt88-customer-service__feature-item:hover, 
.page-platform-reviews-tt88-customer-service__assessment-item:hover, 
.page-platform-reviews-tt88-customer-service__testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-platform-reviews-tt88-customer-service__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.2));
}

.page-platform-reviews-tt88-customer-service__feature-title {
    font-size: 1.6em;
    color: #FF4500;
    margin-bottom: 15px;
}

.page-platform-reviews-tt88-customer-service__assessment-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.page-platform-reviews-tt88-customer-service__testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
}

.page-platform-reviews-tt88-customer-service__testimonial-author {
    font-weight: bold;
    color: #333;
}

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

.page-platform-reviews-tt88-customer-service__image-full-width {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-platform-reviews-tt88-customer-service__conclusion-section {
    background-color: #FFD700;
    color: #333;
    padding: 80px 0;
    text-align: center;
    margin-top: 20px;
}

.page-platform-reviews-tt88-customer-service__conclusion-section .page-platform-reviews-tt88-customer-service__section-title {
    color: #333;
}

.page-platform-reviews-tt88-customer-service__conclusion-section .page-platform-reviews-tt88-customer-service__section-title::after {
    background-color: #FF4500;
}

.page-platform-reviews-tt88-customer-service__conclusion-section p {
    color: #555;
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-platform-reviews-tt88-customer-service__main-title {
        font-size: 2.5em;
    }
    .page-platform-reviews-tt88-customer-service__subtitle {
        font-size: 1.1em;
    }
    .page-platform-reviews-tt88-customer-service__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-platform-reviews-tt88-customer-service__hero-section {
        padding: 60px 0;
    }
    .page-platform-reviews-tt88-customer-service__main-title {
        font-size: 2em;
    }
    .page-platform-reviews-tt88-customer-service__subtitle {
        font-size: 1em;
    }
    .page-platform-reviews-tt88-customer-service__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-platform-reviews-tt88-customer-service__cta-group {
        flex-direction: column;
        align-items: center;
    }
    .page-platform-reviews-tt88-customer-service__cta-button--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-platform-reviews-tt88-customer-service__content-section {
        padding: 40px 0;
    }
    .page-platform-reviews-tt88-customer-service__section-title {
        font-size: 1.8em;
    }
    .page-platform-reviews-tt88-customer-service__feature-item, 
    .page-platform-reviews-tt88-customer-service__assessment-item, 
    .page-platform-reviews-tt88-customer-service__testimonial-item {
        padding: 20px;
    }
    .page-platform-reviews-tt88-customer-service__feature-title {
        font-size: 1.4em;
    }
    .page-platform-reviews-tt88-customer-service__conclusion-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .page-platform-reviews-tt88-customer-service__main-title {
        font-size: 1.7em;
    }
    .page-platform-reviews-tt88-customer-service__subtitle {
        font-size: 0.9em;
    }
    .page-platform-reviews-tt88-customer-service__cta-button {
        width: 90%;
        max-width: 300px;
    }
    .page-platform-reviews-tt88-customer-service__section-title {
        font-size: 1.5em;
    }
    .page-platform-reviews-tt88-customer-service__content-section p {
        font-size: 1em;
    }
    .page-platform-reviews-tt88-customer-service__conclusion-section p {
        font-size: 1em;
    }
}