/* 服务页面全局样式 */
.nav-blur {
    backdrop-filter: saturate(100%) blur(5px);
}

.gradient-text {
    background: linear-gradient(to right, #333, #666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.image-frame {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.title-underline {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #333, #999);
}

.title-underline.large {
    width: 80px;
    height: 4px;
}

.title-underline.small {
    width: 50px;
    height: 3px;
    bottom: -8px;
}

/* 已移除.image-hover类，使用.styled-image替代 */

/* 原有样式 */
.styled-image {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.styled-image:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.styled-container,
.content-block {
    transition: all 0.4s ease;
    border-radius: 15px;
    padding: 1.5rem;
    background: linear-gradient(145deg, #ffffff, #f8f8f8);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.styled-container:hover,
.content-block:hover,
.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-hover {
    transform: translateY(0);
    transition: all 0.4s ease;
    padding: 1.5rem;
    border-radius: 15px;
    background: linear-gradient(145deg, #ffffff, #f8f8f8);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.content-block {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-title,
.content-title,
.styled-title,
.styled-subtitle {
    color: #333;
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
}

.content-container {
    max-width: 80rem; /* 等同于max-w-5xl */
    margin: 0 auto;
    padding: 2rem;
}

.text-content {
    padding: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.content-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-top: 1rem;
}

.styled-title {
    margin-bottom: 1.5rem;
}

.styled-title:after,
.styled-subtitle:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #333, #999);
}

.styled-title:after {
    width: 80px;
    height: 4px;
}

.styled-subtitle {
    margin-bottom: 1rem;
}

.styled-subtitle:after {
    width: 50px;
    height: 3px;
    bottom: -8px;
}

.content-text,
.styled-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    padding: 0 1rem;
    margin-top: 1rem;
}

/* 已移除重复的.image-container类，使用.image-frame替代 */