
    :root {
        --brand-blue: #3E6695;
        --deep-dark: #1a2b3c;
        --soft-gray: #f9fbff;
    }

    .premium-service-section {
        background-color: #fff;
        padding: 120px 0;
        overflow: hidden;
    }

    .service-row-item {
        margin-bottom: 100px;
        align-items: center;
    }

    /* Large Cinematic Image */
    .service-visual-wrap {
        position: relative;
        border-radius: 40px;
        overflow: hidden;
        height: 500px;
        /* High Impact */
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    }

    .service-visual-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.8s ease;
    }

    /* Floating Trust Badge */
    .trust-badge-float {
        position: absolute;
        top: 30px;
        right: 30px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        padding: 15px 25px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        gap: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        z-index: 5;
    }

    /* Content Styling */
    .service-info-box {
        padding: 0 10%;
    }

    .service-index {
        font-family: 'Georgia', serif;
        font-size: 4rem;
        color: rgba(62, 102, 149, 0.1);
        font-weight: 900;
        line-height: 1;
        margin-bottom: -20px;
    }

    .service-info-box h3 {
        font-size: 2.8rem;
        font-weight: 800;
        color: var(--deep-dark);
        margin-bottom: 25px;
        letter-spacing: -1px;
    }

    .service-info-box p {
        font-size: 1.15rem;
        color: #5a6b7d;
        line-height: 1.8;
        margin-bottom: 40px;
    }

    /* Branded Clinical Button */
    .btn-clinical-premium {
        background: var(--brand-blue);
        color: #fff !important;
        padding: 18px 45px;
        border-radius: 100px;
        font-weight: 700;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        transition: 0.4s;
        box-shadow: 0 15px 30px rgba(62, 102, 149, 0.25);
    }

    .btn-clinical-premium:hover {
        transform: translateY(-5px) scale(1.05);
        background: #2c4b6e;
    }

    /* Alternating logic for every second item */
    .service-row-item:nth-child(even) {
        flex-direction: row-reverse;
    }

    @media (max-width: 991px) {
        .service-visual-wrap {
            height: 350px;
            margin-bottom: 40px;
        }

        .service-info-box {
            padding: 0 15px;
        }

        .service-info-box h3 {
            font-size: 2rem;
        }
    }

