

        :root {
            --primary-color: #286fb7;
            --secondary-color: #5087c7;
            --accent-color: #16497d;
            --dark-color: #1b3a6a;
            --light-color: #95b6df;
            --gradient: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        }


        .medconnect-card {
            border: 1px solid #eaeaea;
            border-radius: 0px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            height: 100%;
            background: white;
            margin-bottom: 5px;
            position: relative;
        }

            .medconnect-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 1px;
                background: var(--gradient);
            }

            .medconnect-card:hover {
                transform: translateY(-10px) scale(1.01);
                box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            }

        .medconnect-image-frame {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

            /*.medconnect-image-frame::after {
                        content: '';
                        position: absolute;
                        bottom: 0;
                        left: 0;
                        width: 100%;
                        height: 60%;*/
            /*background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);*/
            /*opacity: 0.7;*/
            /*}*/

            .medconnect-image-frame img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.7s ease;
            }

        .medconnect-card:hover .medconnect-image-frame img {
            transform: scale(1.01);
        }

        .card-number {
            position: absolute;
            top: 15px;
            left: 20px;
            background: rgba(0, 0, 0, 0.25);
            color: #444;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            /*font-size: 1.2rem;*/
            z-index: 2;
        }

        .medconnect-content {
            padding: 25px;
            position: relative;
        }

        .medconnect-title {
            color: var(--dark-color);
            position: relative;
            padding-bottom: 15px;
            border-bottom: 1px solid #eaeaea;
            font-size: 16px;
        }

        .medconnect-card h4 {
            color: #666;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        .medconnect-card p {
            font-size: 14px;
        }

        .conclusion-box {
            background: #286fb7;
            color: white;
            padding: 2rem;
            border: 1px solid #eaeaea;
            border-radius: 0px;
            margin-top: 2rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
            color: #ffffff;
        }

            .conclusion-box h3 {
                font-size: 16px
            }

            .conclusion-box p {
                font-size: 14px
            }
        /*   .conclusion-box::before {
                        content: '';
                        position: absolute;
                        top: -50%;
                        right: -50%;
                        width: 100%;
                        height: 200%;
                        background: rgba(255, 255, 255, 0.1);
                        transform: rotate(25deg);
                    }
        */


        .icon-badge {
            position: absolute;
            top: 15px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: rgba(0, 0, 0, 0.25);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }

            .icon-badge i {
                font-size: 1.2rem;
                color: #666
            }

        @media (max-width: 768px) {


            .medconnect-content {
                padding: 20px;
            }


            .conclusion-box {
                padding: 2.5rem;
            }
        }
    