/* 服务项目页面专属样式 */
.services-hero {
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), 
                url('../images/services-bg.jpg') center/cover;
    color: #2c3e50;
    text-align: center;
    padding: 5rem 2rem;
    margin-bottom: 3rem;
    border: 2px solid #e8f4fc;
    border-radius: 15px;
}

.services-hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2980b9;
}

.services-hero p {
    font-size: 1.5rem;
    color: #555;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e8f4fc;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.service-card h3 {
    color: #2980b9;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li:before {
    content: "✓";
    color: #3498db;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-card li:last-child {
    border-bottom: none;
}

.service-price {
    font-weight: bold;
    color: #e74c3c;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    font-size: 1.1rem;
}

.process-section {
    padding: 3rem 2rem;
    background: #fafdfe;
    text-align: center;
}

.process-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2980b9;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}

.step h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.step p {
    color: #777;
    font-size: 0.9rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .services-hero {
        padding: 2rem 1rem;
        margin: 1rem;
    }
    
    .services-hero h2 {
        font-size: 1.8rem;
    }
    
    .services-hero p {
        font-size: 1.1rem;
    }
    
    .services-grid {
        gap: 1.5rem;
        padding: 0;
        margin: 0 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
        margin: 0;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .service-price {
        font-size: 1rem;
    }
    
    .process-section {
        padding: 2rem 1rem;
        margin: 1rem;
    }
    
    .process-section h3 {
        font-size: 1.6rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 0 1rem;
    }
    
    .step {
        padding: 1rem;
        margin: 0;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .step h4 {
        font-size: 1.1rem;
    }
    
    .step p {
        font-size: 0.85rem;
    }
}

/* 超小屏幕适配 */
@media (max-width: 480px) {
    .services-hero h2 {
        font-size: 1.6rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .process-section h3 {
        font-size: 1.4rem;
    }
}