.skin-white {
    padding-top: 60px;
}

.service-content-block {
    padding: 30px 0 20px;
}

.service-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.service-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    border-color: #cfe3ed;
}

.service-item .service-img {
    height: 260px;
    background: #d9e3ed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    color: #2e5f7a;
    background: linear-gradient(135deg, #e2ecf5 0%, #c8d8e8 100%);
    transition: background 0.3s;
    object-fit: cover;
    width: 100%;
    overflow: hidden;
}

.service-item:hover .service-img {
    background: linear-gradient(135deg, #d4e3f0 0%, #b8cfe0 100%);
}

.service-item .service-body {
    padding: 18px 20px 22px;
}

.service-item .service-body h4 {
    font-weight: 600;
    margin-top: 0;
    color: #1a2a3a;
    font-size: 18px;
}

.service-item .service-body p {
    color: #5f6f7e;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

.section-title {
    margin-bottom: 25px;
}

.section-title h2 {
    font-weight: 300;
    font-size: 32px;
    color: #1a2a3a;
}

.section-title h2 span {
    font-weight: 600;
    color: #2e9cc7;
}

.section-title .subline {
    width: 70px;
    height: 4px;
    background: #2e9cc7;
    border-radius: 10px;
    margin-top: 8px;
}