

        :root {
            --medeed-primary: #286fb7;
            --medeed-light: #f8fafc;
            --medeed-dark: #2c3e50;
            --medeed-border: #e9ecef;
        }

        .section-main {
            padding: 20px 0;
        }

        .section-alt {
            background: var(--medeed-light);
            padding: 20px 0;
        }

        .principle-card {
            background: white;
            border: 1px solid var(--medeed-border);
            padding: 1rem 1rem;
            /*margin-bottom: 3rem;*/
            transition: all 0.3s ease;
            position: relative;
            text-align: justify;
        }

            .principle-card:hover {
                border-color: var(--medeed-primary);
                transform: translateY(-5px);
                box-shadow: 0 20px 40px rgba(40, 111, 183, 0.1);
            }

        .principle-number {
            position: absolute;
            top: 2rem;
            right: 2rem;
            font-size: 4rem;
            font-weight: 800;
            color: var(--medeed-primary);
            opacity: 0.1;
            line-height: 1;
        }

        .principle-icon {
            width: 60px;
            height: 60px;
            background: var(--medeed-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 1.6rem;
        }

        .principle-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--medeed-primary);
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .principle-subtitle {
            font-size: 0.9rem;
            font-weight: 500;
            color: #6c757d;
            margin-bottom: 1.5rem;
            line-height: 1.4;
        }

        .principle-content {
            color: #495057;
            line-height: 1.7;
            font-size: 14px
        }

        .image-container {
            position: relative;
            overflow: hidden;
            margin: 0px;
            padding: 0px
        }

            .image-container img {
                width: 100%;
                height: 270px;
                object-fit: cover;
                transition: transform 0.5s ease;
                border: 1px solid var(--medeed-border);
            }

            .image-container:hover img {
                transform: scale(1.03);
            }

        .main-title {
            font-size: 1.0.5rem;
            font-weight: 800;
            color: var(--medeed-primary);
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .main-subtitle {
            font-size: 0.9rem;
            color: #6c757d;
            margin-bottom: 3rem;
            line-height: 1.6;
        }

        .highlight-box {
            background: white;
            border-left: 4px solid var(--medeed-primary);
            padding: 1rem;
            margin: 0;
            border: 1px solid var(--medeed-border);
        }

        .divider {
            height: 1px;
            background: var(--medeed-border);
            margin: 1rem 0;
        }

        @media (max-width: 768px) {
            .section-main, .section-alt {
                padding: 350px 0;
            }

            .principle-card {
                padding: 2rem 1.5rem;
            }

            .main-title {
                font-size: 1.2rem;
            }

            .image-container img {
                height: 280px;
                margin-bottom: 2rem;
            }
        }
    


        .medeed-vision-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 40px 0;
        }



        .vision-content {
            text-align: center;
            margin: 0 auto;
        }

        .vision-subtitle {
            color: #6c757d;
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 2px;
            margin-bottom: 20px;
            display: block;
        }

        .vision-title {
            color: #2c3e50;
            font-size: 1.2rem;
            font-weight: 500;
            line-height: 1.2;
            margin-bottom: 30px;
        }

        .vision-divider {
            width: 60px;
            height: 3px;
            background: #95a5a6;
            margin: 0 auto 30px auto;
        }

        .vision-description {
            color: #5C5F71;
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .vision-cta {
            background: #34495e;
            color: white;
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            border-radius: 0px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

            .vision-cta:hover {
                background: #2c3e50;
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            }

        /* Responsive Design */
        @media (max-width: 768px) {
            .medeed-vision-section {
                padding: 40px 0;
            }

            .vision-title {
                font-size: 2.2rem;
            }

            .vision-description {
                font-size: 1.1rem;
            }
        }
    