
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        

        .voc-vision-container {
        
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            
        }

        .voc-header-section {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }

        .voc-nav-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .voc-logo-section {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .voc-logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            font-weight: bold;
        }

        .voc-brand-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2c3e50;
        }

        .voc-tagline-text {
            font-size: 0.9rem;
            color: #666;
            font-style: italic;
        }

        .voc-main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }

        .voc-vision-hero {
            text-align: center;
            margin-bottom: 3rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 3rem 2rem;
            color: white;
        }

        .voc-hero-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .voc-hero-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        .voc-content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .voc-vision-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .voc-vision-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        .voc-card-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            margin-bottom: 1.5rem;
        }

        .voc-card-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .voc-card-description {
            color: #555;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .voc-values-section {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 3rem 2rem;
            margin-bottom: 3rem;
        }

        .voc-section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            color: #2c3e50;
            margin-bottom: 2rem;
        }

        .voc-values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .voc-value-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            border-radius: 12px;
            color: white;
            transition: transform 0.3s ease;
        }

        .voc-value-item:hover {
            transform: scale(1.05);
        }

        .voc-value-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .voc-value-text {
            font-size: 1.1rem;
            font-weight: 600;
        }

        .voc-objectives-section {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 3rem 2rem;
        }

        .voc-objectives-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .voc-objective-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            border-radius: 12px;
            transition: transform 0.3s ease;
        }

        .voc-objective-item:hover {
            transform: translateY(-3px);
        }

        .voc-objective-number {
            width: 30px;
            height: 30px;
            background: #667eea;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
        }

        .voc-objective-text {
            color: #2c3e50;
            font-size: 1rem;
            line-height: 1.6;
        }

        .voc-cta-section {
            text-align: center;
            margin-top: 3rem;
            padding: 3rem 2rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            color: white;
        }

        .voc-cta-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .voc-cta-description {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .voc-cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .voc-btn-primary {
            background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .voc-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .voc-btn-secondary {
            background: transparent;
            color: white;
            padding: 1rem 2rem;
            border: 2px solid white;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .voc-btn-secondary:hover {
            background: white;
            color: #667eea;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .voc-nav-wrapper {
                flex-direction: column;
                gap: 1rem;
            }

            .voc-hero-title {
                font-size: 2rem;
            }

            .voc-section-title {
                font-size: 2rem;
            }

            .voc-vision-hero {
                padding: 2rem 1rem;
            }

            .voc-values-grid {
                grid-template-columns: 1fr;
            }

            .voc-objectives-list {
                grid-template-columns: 1fr;
            }

            .voc-cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 480px) {
            .voc-hero-title {
                font-size: 1.5rem;
            }

            .voc-card-title {
                font-size: 1.5rem;
            }

            .voc-main-content {
                padding: 1rem 0.5rem;
            }

            .voc-vision-card,
            .voc-values-section,
            .voc-objectives-section {
                padding: 1.5rem 1rem;
            }
        }