.testimonial-section .testimonial-image-wrapper .testimonial-image::after {
    width: 0px;
    height: 0px;
}

/* =========================
   *  Optimized Module Styles
   * ========================= */

/* --- Universal Section Styling --- */
.about-us-section,
.why-work-section,
.card-grid-section,
.hiring-section {
    padding: 80px 0;
}

.section-title .subtitle {
    color: #5F6FFF;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

/* --- About Us Section --- */
.about-us-section {
    background: #fff;
}

.about-us-section .about-content {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.about-us-section .section-title h2 {
    color: #2c234d;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.about-us-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #5a6473;
}

/* --- Why Work With Us Section --- */
.why-work-section {
    background: #fff;
}

.why-work-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.why-work-section .section-title h2 {
    color: #2c234d;
    font-size: 2.8rem;
    font-weight: 700;
}

.why-work-section .intro-text {
    text-align: center;
    color: #5a6473;
    font-size: 18px;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.why-work-section .single-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
}

.why-work-section .feature-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.why-work-section .single-feature:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(118, 75, 162, 0.4);
}

.why-work-section .feature-icon i {
    font-size: 1.6rem;
    color: #fff;
}

.why-work-section .feature-content h4 {
    color: #2c234d;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.why-work-section .feature-content p {
    color: #5a6473;
    line-height: 1.7;
    font-size: 15px;
}

.why-work-section .illustration img {
    max-width: 100%;
    height: auto;
}

/* --- Reusable Card Grid Section (for Core Business & Looking For) --- */
.card-grid-section {
    background: #f8f9fa;
}

.card-grid-section.bg-white {
    background: #fff;
}

.card-grid-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.card-grid-section .section-title h2 {
    color: #2c234d;
    font-size: 2.8rem;
    font-weight: 700;
}

.card-grid-section .single-feature {
    flex-direction: column;
    align-items: center;
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.07);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease-in-out;
    border-top: 4px solid transparent;
}

.card-grid-section .single-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-top-color: #5F6FFF;
}

.card-grid-section .feature-image {
    margin-bottom: 25px;
    height: 120px;
    /* Standardize image container height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-grid-section .feature-image img {
    max-height: 100%;
    max-width: 100%;
    height: auto;
}

.card-grid-section .feature-content h4 {
    color: #2c234d;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.card-grid-section .feature-content p {
    color: #5a6473;
    line-height: 1.7;
    font-size: 15px;
}

/* --- Hiring Section --- */
.hiring-section {
    background: #f8f9fa;
}

.hiring-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.hiring-section .section-title h2 {
    color: #2c234d;
    font-size: 2.8rem;
    font-weight: 700;
}

.hiring-section .main-hiring-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(118, 75, 162, 0.3);
    text-align: center;
    margin-bottom: 50px;
}

.hiring-section .main-hiring-card .feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.hiring-section .main-hiring-card .feature-icon i {
    font-size: 2.2rem;
    color: white;
}

.hiring-section .main-hiring-card h4 {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.hiring-section .main-hiring-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
}

.hiring-section .single-feature {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.07);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease-in-out;
}

.hiring-section .single-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.hiring-section .feature-content h4 {
    color: #2c234d;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.hiring-section .feature-content p {
    color: #5a6473;
    line-height: 1.7;
    font-size: 15px;
}


/* =========================
 *  New Services Section Styles
 * ========================= */
.services-section-new {
    padding: 80px 0;
    overflow: hidden;
    /* 防止背景模糊元素溢出 */
    position: relative;
}

/* 可以在这里添加图片中的背景模糊圆点，作为装饰 */
.services-section-new::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(230, 245, 255, 0.7) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.services-section-new .section-title {
    margin-bottom: 60px !important;
}

.services-section-new .services-title {
    font-weight: 700;
    color: #2c234d;
    /* 深蓝色/近黑色 */
    font-size: 2.8rem;
    /* 调整字体大小以匹配图片 */
    margin-bottom: 20px;
}

.services-section-new .services-highlight {
    color: #5F6FFF;
    /* 图片中的青色 */
    font-style: italic;
    font-weight: 700;
    /* 图片中 "services" 是斜体 */
}

.services-section-new .services-p {
    color: #5a6473;
    /* 灰色文本 */
    font-size: 1rem;
    line-height: 1.7;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.service-item {
    padding: 30px 15px;
    transition: transform 0.3s ease;
    border-radius: 25px;
    /* 图片中的圆角更大 */
    padding: 45px 35px;
}

.service-item .service-image {
    height: 150px;
    /* 固定图像容器高度以对齐 */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    /* 图片和标题之间的间距 */
}

.service-item .service-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.service-item .service-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c234d;
    margin-bottom: 15px;
}

.service-item .service-content p {
    color: #5a6473;
    line-height: 1.7;
    font-size: 1rem;
}

.service-item:hover {
    background: #fff;
    box-shadow: 0 4px 40px rgba(82, 85, 90, 0.08);
    /* 柔和的阴影 */
}

/* --- Responsive Optimizations --- */
@media (max-width: 991px) {
    .why-work-section .feature-list {
        margin-bottom: 50px;
    }

    .card-grid-section .row>* {
        margin-bottom: 30px;
    }

    /* 在中等屏幕上，为卡片式项目添加上边距以分隔 */
    .service-item.card-style {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {

    .about-us-section .section-title h2,
    .why-work-section .section-title h2,
    .card-grid-section .section-title h2,
    .hiring-section .section-title h2 {
        font-size: 2.2rem;
    }

    .about-us-section,
    .why-work-section,
    .card-grid-section,
    .hiring-section {
        padding: 40px 0;
    }

    .hiring-section .main-hiring-card {
        padding: 40px 25px;
    }

    .services-section-new {
        padding: 80px 0;
    }

    .services-section-new .services-title {
        font-size: 2.2rem;
    }

    .service-item {
        margin-bottom: 20px;
    }
}