

        .medeed-vision-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 50px 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: #6c757d;
                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;
            }
        }
    