/* services.html 独有样式 */
/* 服务特性列表 */
.service-features-list {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.service-features-list li {
    margin-bottom: 0.5rem;
    color: #666;
    display: flex;
    align-items: center;
}

.service-features-list li::before {
    content: "✓";
    color: #4CAF50;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* 服务卡片样式 */
.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* 服务详情部分 */
.service-details {
    margin-top: 4rem;
}

.service-detail-item {
    margin-bottom: 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.service-detail-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #001f3f;
}

.service-detail-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
    height: 200px;
    background: linear-gradient(135deg, #001f3f 0%, #ff6b6b 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .service-detail-item,
    .service-detail-item:nth-child(even) {
        flex-direction: column;
    }
}
