    /* Reports Section Styling */
    .hs_chinese_main_wrapper {
        padding: 60px 0;
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        min-height: 100vh;
    }

    .reports-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .reports-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

    .reports-header h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #ff6a00, #ff8c42);
        border-radius: 2px;
    }

    .reports-header p {
        font-size: 1.1rem;
        color: #5a6c7d;
        margin-top: 20px;
    }

    /* Service Card Styling */
    .service-card {
        width: 100%;
        min-height: 480px;
        border: none;
        border-radius: 16px;
        overflow: hidden;
        background: #ffffff;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        cursor: pointer;
        display: flex;
        flex-direction: column;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        position: relative;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #ff6a00, #ff8c42, #ffa366);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 15px 40px rgba(255, 106, 0, 0.2);
    }

    .service-card:hover::before {
        opacity: 1;
    }

    .service-card-image {
        position: relative;
        height: 200px;
        overflow: hidden;
        flex-shrink: 0;
    }

    .service-card img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .service-card:hover img {
        transform: scale(1.1);
    }

    .service-card-body {
        padding: 20px 18px 22px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 10px;
    }

    .service-card-body > div:first-child {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .service-card-body > div:last-child {
        flex-shrink: 0;
        margin-top: auto;
    }

    .service-card-body h3 {
        font-size: 1.3rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 10px;
        line-height: 1.3;
        min-height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .service-card-body p {
        font-size: 0.92rem;
        color: #5a6c7d;
        line-height: 1.5;
        margin-bottom: 8px;
        min-height: 15px;
        overflow: hidden;
        display: -webkit-box;
        /* -webkit-line-clamp: 3; */
        -webkit-box-orient: vertical;
        text-align: center;
    }

    .price-tag {
        font-size: 1.4rem !important;
        font-weight: 800;
        background: linear-gradient(135deg, #ff6a00, #ff8c42);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin: 10px 0;
        display: block;
    }

    .generate-btn {
        background: linear-gradient(135deg, #ff6a00, #ff8c42);
        color: #fff;
        padding: 11px 26px;
        border-radius: 50px;
        font-size: 0.9rem;
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        border: none;
        display: inline-block;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
        margin-top: 5px;
    }

    .generate-btn:hover {
        background: linear-gradient(135deg, #e65c00, #ff7a2e);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 106, 0, 0.4);
    }

    .margin-boottom {
        margin-bottom: 30px;
        display: flex;
    }

    .margin-boottom .service-card {
        width: 100%;
    }

    /* Responsive Design */
    @media (max-width: 991px) {
        .reports-header h2 {
            font-size: 2rem;
        }

        .service-card {
            min-height: 460px;
        }

        .service-card-image {
            height: 200px;
        }
    }

    @media (max-width: 767px) {
        .hs_chinese_main_wrapper {
            padding: 40px 0;
        }

        .reports-header {
            margin-bottom: 35px;
        }

        .reports-header h2 {
            font-size: 1.75rem;
        }

        .reports-header p {
            font-size: 1rem;
        }

        .service-card {
            min-height: 420px;
            margin: 0 auto;
            max-width: 400px;
        }

        .service-card-image {
            height: 180px;
        }

        .service-card-body {
            padding: 20px 16px 18px;
        }

        .service-card-body h3 {
            font-size: 1.2rem;
            min-height: 40px;
        }

        .service-card-body p {
            font-size: 0.9rem;
            min-height: 55px;
            /* -webkit-line-clamp: 3; */
        }

        .price-tag {
            font-size: 1.3rem;
        }

        .generate-btn {
            padding: 10px 24px;
            font-size: 0.9rem;
        }

        .margin-boottom {
            margin-bottom: 25px;
        }
    }

    @media (max-width: 575px) {
        .service-card {
            min-height: 400px;
            margin: 0 auto;
            max-width: 350px;
        }

        .service-card-image {
            height: 170px;
        }

        .service-card-body h3 {
            font-size: 1.15rem;
            min-height: 38px;
        }

        .service-card-body p {
            min-height: 52px;
        }
    }

    /* Animation */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .service-card {
        animation: fadeInUp 0.6s ease-out;
    }

    .service-card:nth-child(1) { animation-delay: 0.1s; }
    .service-card:nth-child(2) { animation-delay: 0.2s; }
    .service-card:nth-child(3) { animation-delay: 0.3s; }
    .service-card:nth-child(4) { animation-delay: 0.4s; }
    .service-card:nth-child(5) { animation-delay: 0.5s; }
    .service-card:nth-child(6) { animation-delay: 0.6s; }
