* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }
        .voccostitutional{
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .voc-edu-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .voc-edu-hero {
            text-align: center;
            padding: 60px 20px;
            color: white;
            margin-bottom: 40px;
        }

        .voc-edu-hero-title {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .voc-edu-hero-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        .voc-edu-content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .voc-edu-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .voc-edu-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }

        .voc-edu-card-icon {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 20px;
        }

        .voc-edu-card-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            text-align: center;
            color: #2c3e50;
        }

        .voc-edu-card-preview {
            color: #666;
            text-align: center;
            margin-bottom: 20px;
            font-style: italic;
        }

        .voc-edu-expand-btn {
            width: 100%;
            padding: 12px 24px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .voc-edu-expand-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
        }

        /* Modal Styles */
        .voc-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .voc-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .voc-modal {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.8);
            background: white;
            border-radius: 20px;
            max-width: 800px;
            max-height: 90vh;
            width: 90%;
            overflow-y: auto;
            z-index: 1001;
            transition: all 0.3s ease;
            box-shadow: 0 25px 50px rgba(0,0,0,0.3);
        }

        .voc-modal-overlay.active .voc-modal {
            transform: translate(-50%, -50%) scale(1);
        }

        .voc-modal-header {
            padding: 30px 30px 20px;
            border-bottom: 2px solid #f0f0f0;
            position: relative;
        }

        .voc-modal-title {
            font-size: 2rem;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .voc-modal-subtitle {
            color: #666;
            font-size: 1.1rem;
        }

        .voc-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 2rem;
            cursor: pointer;
            color: #999;
            transition: color 0.3s ease;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .voc-modal-close:hover {
            color: #333;
            background: #f0f0f0;
        }

        .voc-modal-body {
            padding: 30px;
        }

        .voc-modal-section {
            margin-bottom: 30px;
        }

        .voc-modal-section h4 {
            color: #2c3e50;
            font-size: 1.3rem;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #667eea;
            display: inline-block;
        }

        .voc-modal-section p {
            margin-bottom: 10px;
            line-height: 1.8;
        }

        .voc-modal-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }

        .voc-modal-section li {
            margin-bottom: 8px;
            line-height: 1.6;
        }

        .voc-highlight {
            background: linear-gradient(120deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
            padding: 15px;
            border-radius: 10px;
            margin: 15px 0;
            border-left: 4px solid #667eea;
        }

        /* Quiz Styles */
        .voc-edu-quiz-section {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 40px;
            backdrop-filter: blur(10px);
        }

        .voc-edu-quiz-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 30px;
            color: #2c3e50;
        }

        .voc-edu-progress-bar {
            width: 100%;
            height: 8px;
            background: #e0e0e0;
            border-radius: 4px;
            margin-bottom: 30px;
            overflow: hidden;
        }

        .voc-edu-progress-fill {
            height: 100%;
            background: linear-gradient(135deg, #667eea, #764ba2);
            width: 0%;
            transition: width 0.5s ease;
        }

        .voc-edu-question {
            margin-bottom: 30px;
        }

        .voc-edu-question-text {
            font-size: 1.2rem;
            margin-bottom: 20px;
            font-weight: 600;
            color: #2c3e50;
        }

        .voc-edu-options {
            display: grid;
            gap: 15px;
            margin-bottom: 30px;
        }

        .voc-edu-option {
            padding: 15px 20px;
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .voc-edu-option:hover {
            background: #e9ecef;
            border-color: #667eea;
        }

        .voc-edu-option.voc-edu-correct {
            background: #d4edda;
            border-color: #28a745;
            color: #155724;
        }

        .voc-edu-option.voc-edu-incorrect {
            background: #f8d7da;
            border-color: #dc3545;
            color: #721c24;
        }

        .voc-edu-quiz-btn {
            padding: 12px 30px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .voc-edu-quiz-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .voc-edu-quiz-btn:not(:disabled):hover {
            transform: scale(1.05);
        }

        .voc-edu-score {
            text-align: center;
            padding: 40px;
        }

        .voc-edu-score-title {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #2c3e50;
        }

        .voc-edu-score-value {
            font-size: 3rem;
            font-weight: bold;
            color: #667eea;
            margin-bottom: 20px;
        }

        .voc-edu-hidden {
            display: none;
        }

        .voc-edu-fade-in {
            animation: fadeIn 0.5s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .voc-edu-footer {
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 40px 20px;
            border-radius: 20px;
            text-align: center;
        }

        .voc-edu-contact-info {
            margin-bottom: 20px;
        }

        .voc-edu-contact-item {
            margin: 10px 0;
            font-size: 1rem;
        }

        .voc-edu-contact-item span:first-child {
            margin-right: 10px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .voc-edu-hero-title {
                font-size: 2rem;
            }

            .voc-edu-content-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .voc-modal {
                width: 95%;
                max-height: 95vh;
            }

            .voc-modal-header, .voc-modal-body {
                padding: 20px;
            }
        }