/* 服务与职业页面样式 */
.service-careers-container {
    padding: 4rem 0;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.image-section {
    margin-bottom: 3rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.text-section {
    display: flex;
    justify-content: center;
}

.text-card {
    max-width: 1000px;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.text-card p {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* 动画效果 */
.animated {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slideInUp {
    transform: translateY(30px);
}

.slideInRight {
    transform: translateX(30px);
}

.animated.active {
    opacity: 1;
    transform: translate(0);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .main-image {
        height: 250px;
    }

    .text-card {
        padding: 2rem;
    }

    .text-card p {
        font-size: 1rem;
    }
}
