        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .voc-terms-container {
            font-family: 'Georgia', 'Times New Roman', serif;
            line-height: 1.7;
            color: #2c3e50;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
        }

        .voc-terms-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
                        
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            position: relative;
        }

        .voc-terms-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(34, 49, 63, 0.3);
        }

        .voc-hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }

        .voc-terms-title {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            letter-spacing: 2px;
        }

        .voc-terms-subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
            font-style: italic;
        }

        .voc-main-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 60px 20px;
            background: white;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
            border-radius: 15px;
            margin-top: -50px;
            margin-bottom: 50px;
            position: relative;
            z-index: 3;
        }

        .voc-intro-section {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 40px;
            border-left: 5px solid #3498db;
        }

        .voc-intro-text {
            font-size: 1.1rem;
            color: #34495e;
            margin-bottom: 20px;
        }

        .voc-website-info {
            background: #e3f2fd;
            padding: 15px 20px;
            border-radius: 8px;
            font-weight: 600;
            color: #1565c0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .voc-website-info::before {
            content: '🌐';
            font-size: 1.2rem;
        }

        .voc-section {
            margin-bottom: 40px;
            padding: 30px;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            border: 1px solid #e0e6ed;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .voc-section:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .voc-section-header {
            font-size: 1.6rem;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #3498db;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .voc-section-number {
            background: #3498db;
            color: white;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .voc-section-content {
            font-size: 1rem;
            color: #2c3e50;
            margin-bottom: 20px;
        }

        .voc-terms-list {
            list-style: none;
            padding-left: 0;
        }

        .voc-terms-list li {
            padding: 12px 0;
            padding-left: 25px;
            position: relative;
            border-bottom: 1px solid #f1f3f4;
        }

        .voc-terms-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 12px;
            color: #27ae60;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .voc-terms-list li:last-child {
            border-bottom: none;
        }

        .voc-highlight-box {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 25px;
            border-radius: 12px;
            margin: 25px 0;
            position: relative;
            overflow: hidden;
        }

        .voc-highlight-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(45deg);
            pointer-events: none;
        }

        .voc-highlight-box h3 {
            margin-bottom: 15px;
            font-size: 1.3rem;
            position: relative;
            z-index: 2;
        }

        .voc-highlight-box p {
            margin: 0;
            position: relative;
            z-index: 2;
        }

        .voc-contact-section {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            margin-top: 50px;
        }

        .voc-contact-title {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #ecf0f1;
        }

        .voc-contact-info {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            display: inline-block;
        }

        .voc-contact-email {
            font-size: 1.2rem;
            font-weight: bold;
            color: #3498db;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .voc-contact-email:hover {
            color: #74b9ff;
            text-decoration: underline;
        }

        .voc-contact-email::before {
            content: '📧';
            font-size: 1.3rem;
        }

        .voc-effective-date {
            text-align: center;
            margin-top: 40px;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 10px;
            font-style: italic;
            color: #6c757d;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .voc-terms-hero {
                height: 250px;
            }

            .voc-terms-title {
                font-size: 2.2rem;
            }

            .voc-terms-subtitle {
                font-size: 1.1rem;
            }

            .voc-main-content {
                padding: 40px 15px;
                margin-top: -30px;
            }

            .voc-section {
                padding: 20px;
                margin-bottom: 30px;
            }

            .voc-section-header {
                font-size: 1.4rem;
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .voc-intro-section {
                padding: 20px;
            }

            .voc-contact-section {
                padding: 30px 20px;
            }

            .voc-contact-title {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 480px) {
            .voc-terms-title {
                font-size: 1.8rem;
            }

            .voc-main-content {
                padding: 30px 10px;
            }

            .voc-section {
                padding: 15px;
            }

            .voc-website-info {
                flex-direction: column;
                text-align: center;
                gap: 5px;
            }
        }