/* 团队优势区域 */
.team-advantages {
    margin-bottom: 60px;
    padding: 40px;
    background: var(--card-bg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-advantages:hover {
    box-shadow: var(--shadow-lg);
}

.section-title {
    text-align: center;
    margin-bottom: 32px;
    padding: 20px;
}

.section-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--light-text);
    line-height: 1.6;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.advantage-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, white 0%, #f8fafc 100%);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.advantage-icon {
    width: 90px;
    height: 90px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-item:hover .advantage-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.advantage-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text-color);
    letter-spacing: 0.5px;
}

.advantage-description {
    font-size: 15px;
    color: var(--light-text);
    line-height: 1.7;
}

/* 服务流程区域 */
.service-process {
    margin: 60px 0;
    text-align: center;
    padding: 40px;
    background: var(--card-bg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-process:hover {
    box-shadow: var(--shadow-lg);
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 130px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover {
    transform: translateY(-8px);
}

.step-number {
    width: 90px;
    height: 90px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.step-name {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    color: var(--text-color);
    line-height: 1.4;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        gap: 15px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .step-name {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 20px;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
}

/* 图片列表区域 */
.image-gallery {
    margin: 60px 0;
    padding: 40px;
    background: var(--card-bg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-gallery:hover {
    box-shadow: var(--shadow-lg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.gallery-item {
    background: linear-gradient(135deg, white 0%, #f8fafc 100%);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.gallery-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin: 20px;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.gallery-description {
    font-size: 15px;
    color: var(--light-text);
    margin: 0 20px 20px;
    line-height: 1.7;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .gallery-title {
        font-size: 16px;
    }
    
    .gallery-description {
        font-size: 14px;
    }
    
    .image-gallery {
        padding: 30px;
    }
}

/* 数据库板块样式 */
.database-section {
    margin: 60px 0;
    padding: 40px;
    background: var(--card-bg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.database-section:hover {
    box-shadow: var(--shadow-lg);
}

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

.database-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, white 0%, #f8fafc 100%);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-decoration: none;
    color: var(--text-color);
}

.database-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.database-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.database-item:hover .database-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.database-info {
    flex: 1;
}

.database-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
    letter-spacing: 0.5px;
}

.database-description {
    font-size: 15px;
    color: var(--light-text);
    line-height: 1.6;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .database-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .database-item {
        padding: 20px;
    }
    
    .database-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .database-name {
        font-size: 16px;
    }
    
    .database-description {
        font-size: 14px;
    }
    
    .database-section {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .gallery-image {
        height: 180px;
    }
    
    .image-gallery {
        padding: 20px;
    }
    
    .database-section {
        padding: 20px;
    }
    
    .database-item {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}