* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #3E67A3;
            --secondary-color: #03A180;
            --accent-color: #BBE7F4;
            --light-color: #f8fafc;
            --dark-color: #1e293b;
            --text-color: #334155;
            --shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
            --border-radius: 10px;
        }

        body {
            font-family: 'Tajawal', sans-serif;
            line-height: 1.8;
            color: var(--text-color);
            background: linear-gradient(135deg, #f5f7fa 0%, #e9ecf2 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .main-content {
            flex: 1;
            max-width: 1000px;
            width: 100%;
            margin: 40px auto;
            padding: 0 20px;
        }

        .page-title {
            color: var(--primary-color);
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }

        .page-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(to left, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }

        .title-decoration {
            text-align: center;
            margin-bottom: 40px;
            color: var(--secondary-color);
            font-size: 1.2rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .legal-document {
            background: white;
            border-radius: var(--border-radius);
            padding: 50px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(62, 103, 163, 0.1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.98);
            margin-bottom: 30px;
        }

        .legal-document::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            opacity: 0.05;
            border-radius: 0 0 0 150px;
        }

        .document-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--accent-color);
        }

        .document-header h2 {
            color: var(--primary-color);
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .document-header .sub-header {
            color: var(--secondary-color);
            font-size: 1.2rem;
            font-weight: 500;
            margin-top: 5px;
        }

        .document-body {
            color: var(--text-color);
            font-size: 1.1rem;
            line-height: 2;
        }

        .document-section {
            margin-bottom: 35px;
        }

        .document-section h3 {
            color: var(--primary-color);
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 20px;
            padding-right: 15px;
            border-right: 4px solid var(--secondary-color);
        }

        .document-section h4 {
            color: var(--primary-color);
            font-size: 1.2rem;
            font-weight: 600;
            margin: 20px 0 10px;
            padding-right: 10px;
        }

        .document-section p {
            margin-bottom: 15px;
            text-align: justify;
        }

        .document-section ul, .document-section ol {
            margin-right: 20px;
            margin-bottom: 15px;
        }

        .document-section li {
            margin-bottom: 8px;
        }

        .vision-box {
            background: linear-gradient(135deg, rgba(62, 103, 163, 0.05), rgba(3, 161, 128, 0.05));
            padding: 20px 25px;
            border-radius: var(--border-radius);
            margin: 20px 0;
            font-weight: 500;
            border-right: 4px solid var(--secondary-color);
            font-size: 1.15rem;
            color: var(--primary-color);
        }

        .rights-list {
            list-style: none;
            padding-right: 0;
        }

        .rights-list li {
            margin-bottom: 12px;
            position: relative;
            padding-right: 30px;
            counter-increment: right-counter;
        }

        .rights-list li::before {
            content: counter(right-counter) ".";
            position: absolute;
            right: 0;
            color: var(--secondary-color);
            font-weight: 700;
            font-size: 1rem;
        }

        .duties-list {
            list-style: none;
            padding-right: 0;
            counter-reset: duty-counter;
        }

        .duties-list li {
            margin-bottom: 12px;
            position: relative;
            padding-right: 30px;
            counter-increment: duty-counter;
        }

        .duties-list li::before {
            content: counter(duty-counter) ".";
            position: absolute;
            right: 0;
            color: var(--secondary-color);
            font-weight: 700;
            font-size: 1rem;
        }

        .work-schedule {
            background: #f8fafc;
            padding: 20px;
            border-radius: var(--border-radius);
            margin: 15px 0;
        }

        .facilities-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 15px 0;
        }

        .facility-item {
            background: white;
            border: 1px solid var(--accent-color);
            padding: 10px 20px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .facility-item i {
            color: var(--secondary-color);
        }

        .termination-box {
            background: #fff3e0;
            padding: 20px;
            border-radius: var(--border-radius);
            margin: 20px 0;
            border-right: 4px solid #ff9800;
        }

        .back-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 14px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            margin-top: 30px;
            box-shadow: 0 4px 15px rgba(62, 103, 163, 0.3);
        }

        .back-btn:hover {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(3, 161, 128, 0.4);
        }

        .back-btn i {
            font-size: 1.1rem;
        }

        .definition-item {
            background: #f0f4f9;
            padding: 10px 20px;
            margin-bottom: 10px;
            border-radius: 50px;
            border-right: 3px solid var(--secondary-color);
        }

        .definition-item strong {
            color: var(--primary-color);
            margin-left: 10px;
        }

        @media (max-width: 768px) {
            .main-content {
                margin: 30px auto;
                padding: 0 15px;
            }

            .page-title {
                font-size: 2rem;
            }
            
            .legal-document {
                padding: 30px;
            }
            
            .document-header h2 {
                font-size: 1.6rem;
            }
            
            .document-section h3 {
                font-size: 1.3rem;
            }

            .facilities-list {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .main-content {
                margin: 20px auto;
                padding: 0 10px;
            }
            
            .page-title {
                font-size: 1.8rem;
            }
            
            .title-decoration {
                font-size: 1rem;
            }
            
            .legal-document {
                padding: 20px;
            }
            
            .document-header h2 {
                font-size: 1.4rem;
            }

            .document-header .sub-header {
                font-size: 1rem;
            }

            .back-btn {
                padding: 12px 30px;
                font-size: 1rem;
            }
        }