/* Customer Testimonials页面样式 */

/* 主要内容区域 */
.main-content {
    padding-top: 100px; /* 为顶部导航留出空间 */
    padding-bottom: 60px;
}

/* Testimonials Hero Section */
.testimonials-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-hero-image {
    flex: 0 0 auto;
}

.hero-image {
    max-width: 400px;
    height: auto;
}

.testimonials-hero-content {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.testimonials-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    text-align: right;
    background: linear-gradient(to right, #4682B4, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

/* 评价卡片区域 */
.testimonial-card-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 0 0 60%;
    background-color: #F0FFC2;
    border-radius: 30px;
    padding: 40px;
}

.testimonial-content {
    max-width: 90%;
}

.testimonial-text {
    font-size: 22px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #333;
}

.author-title {
    font-size: 16px;
    color: #777;
    margin: 0;
}

.testimonial-image {
    flex: 0 0 35%;
    display: flex;
    justify-content: center;
}

.orange-image {
    max-width: 100%;
    height: auto;
}



/* 绿色卡片 */
.testimonial-card.green {
    background-color: #AEFFDB;
}

/* 浅绿色卡片 */
.testimonial-card.light-green {
    background-color: #C9FFA9;
}

/* 圆形图片 */
.orange-image.round {
    border-radius: 50%;
}

/* 橙色卡片 */
.testimonial-card.orange {
    background-color: #FFE5B4;
}

/* 响应式样式 - Testimonials页面 */
@media (max-width: 1024px) {
    .testimonials-hero, .testimonial-card-section {
        padding: 40px 20px;
    }
    
    .testimonials-title {
        font-size: 54px;
    }
    
    .hero-image {
        max-width: 300px;
    }
    
    .testimonial-card {
        flex: 0 0 55%;
        padding: 30px;
    }
    
    .testimonial-text {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .testimonials-hero {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonials-hero-image {
        margin-bottom: 30px;
    }
    
    .testimonials-hero-content {
        justify-content: center;
    }
    
    .testimonials-title {
        font-size: 42px;
        text-align: center;
        white-space: normal;
    }
    
    .testimonial-card-section {
        flex-direction: column;
        gap: 30px;
    }
    
    .testimonial-card-section.reverse {
        flex-direction: column-reverse;
    }
    
    .testimonial-card {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .testimonial-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 250px;
    }
    
    .testimonial-text {
        font-size: 18px;
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
    }
    
    .author-name {
        font-size: 18px;
    }
    
    .author-title {
        font-size: 14px;
    }
}

@media (max-width: 479px) {
    .testimonials-title {
        font-size: 36px;
    }
    
    .hero-image {
        max-width: 250px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .author-name {
        font-size: 16px;
    }
} 