/* 服务项目页面样式 */
.services-page .hero {
    background: linear-gradient(to bottom, #dbeafe, #bfdbfe);
    padding: 6rem 0 4rem;
    text-align: center;
    margin-bottom: 0;
    margin-top: 20px;
}

.services-page .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e40af;
}

.services-page .hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: #4b5563;
}

.service-list {
    padding: 6rem 0 4rem;
    background-color: #fff;
}

.service-item {
    display: flex;
    margin-bottom: 3rem;
    background-color: #f3f4f6;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-icon {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eff6ff;
}

.service-icon i {
    font-size: 2.5rem;
    color: #3b82f6;
}

.service-content {
    flex: 1;
    padding: 2rem;
}

.service-content h2 {
    color: #1e40af;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.service-content p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.service-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4b5563;
}

.service-content ul li::before {
    content: "•";
    color: #3b82f6;
    position: absolute;
    left: 0;
}

.btn-more {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #3b82f6;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-more:hover {
    background-color: #2563eb;
    color: #fff;
    text-decoration: none;
}

.cta {
    background: linear-gradient(to right, #3b82f6, #2563eb);
    padding: 6rem 0 4rem;
    text-align: center;
    margin-top: 0;
}

.cta h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2rem;
}

.btn-contact {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #fff;
    color: #3b82f6;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: transform 0.3s;
}

.btn-contact:hover {
    transform: translateY(-3px);
    color: #2563eb;
    text-decoration: none;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .service-item {
        flex-direction: column;
    }

    .service-icon {
        padding: 2rem 0;
    }

    .service-content {
        padding: 1.5rem;
    }
}

.services-page .service-list .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}