/* 服务优势部分样式 */
.service-advantages {
    padding: 80px 0;
    background-color: #f9f9f9;
}

/* 团队优势样式 */
.team-advantage {
    margin-bottom: 60px;
}

.team-advantage h3 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
}

/* 服务优势样式 */
.service-advantage {
    margin-bottom: 60px;
}

.service-advantage h3 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
}

.advantage-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.advantage-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #1e88e5, #64b5f6);
}

.advantage-item:hover {
    transform: translateY(-10px);
}

.advantage-item h4 {
    color: #1e88e5;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.advantage-item p {
    color: #666;
    line-height: 1.6;
}

/* 核心优势样式 */
.core-advantage {
    margin-bottom: 60px;
}

.core-advantage h3 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
}

.advantage-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.advantage-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-card h4 {
    color: #1e88e5;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
}

.advantage-card ul {
    list-style: none;
    padding: 0;
}

.advantage-card li {
    padding: 10px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.advantage-card li::before {
    content: '•';
    color: #1e88e5;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.advantage-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.advantage-detail-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.advantage-detail-image:hover {
    transform: scale(1.02);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .advantage-grid {
        grid-template-columns: 1fr;
    }

    .advantage-cards {
        grid-template-columns: 1fr;
    }

    .advantage-images {
        grid-template-columns: 1fr;
    }

    .advantage-intro {
        font-size: 1rem;
        padding: 0 20px;
    }
} 