/* 顶部联系方式栏 */
.top-contact-bar {
    background: #2c3e50;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.top-contact-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact-bar .contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-contact-bar .contact-info i {
    margin-right: 5px;
    color: #5eca9f;
}

.top-contact-bar .contact-info a {
    color: #fff;
    text-decoration: none;
}

.top-contact-bar .contact-info a:hover {
    color: #5eca9f;
}

/* Logo样式 */
.navbar-brand-text {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
    display: block;
    max-width: 280px;
}

.navbar-brand-text:hover {
    color: #5eca9f;
    text-decoration: none;
}

/* 导航栏样式调整 - 导航项靠右显示 */
.navbar-nav.ml-auto {
    margin-left: auto !important;
}

.navbar-nav .nav-item {
    margin: 0 0.5rem;
}

@media (max-width: 991px) {
    .navbar-nav.ml-auto {
        margin-left: 0 !important;
        margin-top: 1rem;
    }
    .navbar-nav .nav-item {
        margin: 0;
    }
}

/* 服务卡片样式 */
.service-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.service-card .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #5eca9f, #f1cf69);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card .service-icon i {
    font-size: 30px;
    color: #fff;
}

.service-card h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

/* 数据统计样式 */
.stats-section {
    background: linear-gradient(135deg, #5eca9f, #4a9d7f);
    color: #fff;
    padding: 60px 0;
}

.stats-item {
    text-align: center;
    padding: 20px;
}

.stats-item .stats-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stats-item .stats-label {
    font-size: 16px;
    opacity: 0.9;
}

/* 优势特色样式 */
.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.feature-item .feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #f1cf69;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.feature-item .feature-icon i {
    font-size: 20px;
    color: #fff;
}

.feature-item .feature-content h5 {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
}

.feature-item .feature-content p {
    color: #666;
    font-size: 14px;
}

/* 团队介绍样式 */
.team-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.team-card .team-img {
    height: 200px;
    background: linear-gradient(135deg, #5eca9f, #f1cf69);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card .team-img i {
    font-size: 60px;
    color: #fff;
}

.team-card .team-info {
    padding: 20px;
    text-align: center;
}

.team-card .team-info h5 {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
}

.team-card .team-info p {
    color: #666;
    font-size: 14px;
}

/* 发展历程样式 */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #5eca9f;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item .timeline-content {
    width: 45%;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.timeline-item .timeline-dot {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 16px;
    height: 16px;
    background: #5eca9f;
    border-radius: 50%;
    transform: translateX(-50%);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #5eca9f;
}

.timeline-item .timeline-year {
    font-size: 24px;
    font-weight: 700;
    color: #5eca9f;
    margin-bottom: 10px;
}

.timeline-item .timeline-text {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

/* FAQ样式 */
.faq-item {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h5 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.faq-item h5 i {
    color: #5eca9f;
    margin-right: 10px;
}

.faq-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    padding-left: 30px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .navbar-brand-text {
        font-size: 14px;
        max-width: 200px;
    }
    
    .top-contact-bar .container {
        flex-direction: column;
        text-align: center;
    }
    
    .top-contact-bar .contact-info {
        flex-direction: column;
        gap: 5px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 50px;
    }
    
    .timeline-item .timeline-content {
        width: 100%;
    }
    
    .timeline-item .timeline-dot {
        left: 20px;
    }
    
    .stats-item .stats-number {
        font-size: 36px;
    }
}
