
        :root {
            --primary-color: #2563eb;
            --secondary-color: #f59e0b;
            --dark-color: #1e293b;
            --light-bg: #f8fafc;
            --white: #ffffff;
            --text-color: #334155;
            --border-color: #e2e8f0;
            --radius: 12px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Vazirmatn', sans-serif; background-color: var(--light-bg); color: var(--text-color); line-height: 1.7; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }


        /* --- استایل جزئیات کارمند --- */
        .page-header { background-color: var(--white); padding: 20px 0; border-bottom: 1px solid var(--border-color); }
        .breadcrumb { font-size: 0.9rem; color: #64748b; }

        .profile-layout { padding: 60px 0; display: flex; gap: 40px; flex-wrap: wrap; }

        /* سایدبار (پروفایل) */
        .profile-sidebar { flex: 1; min-width: 300px; }
        .profile-card { background: var(--white); padding: 30px; border-radius: var(--radius); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); position: sticky; top: 100px; text-align: center; border: 1px solid var(--border-color); }
        
        .profile-img { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; margin: 0 auto 20px; border: 5px solid var(--light-bg); }
        
        .profile-name { font-size: 1.5rem; font-weight: 800; color: var(--dark-color); margin-bottom: 5px; }
        .profile-role { color: var(--secondary-color); font-weight: 700; margin-bottom: 25px; display: block; }

        .info-list { text-align: right; border-top: 1px solid var(--border-color); padding-top: 20px; }
        .info-item { margin-bottom: 15px; display: flex; align-items: flex-start; gap: 10px; color: #64748b; }
        .info-icon { color: var(--primary-color); margin-top: 3px; }
        .info-label { font-weight: 700; color: var(--dark-color); min-width: 70px; }

        /* محتوای اصلی (رزومه) */
        .resume-content { flex: 2; min-width: 300px; }
        
        .section-title { font-size: 1.5rem; color: var(--dark-color); margin-bottom: 30px; border-right: 4px solid var(--primary-color); padding-right: 15px; }
        
        .resume-card { background: var(--white); padding: 30px; border-radius: var(--radius); border: 1px solid var(--border-color); margin-bottom: 30px; }

        .resume-item { position: relative; padding-right: 25px; border-right: 2px solid var(--border-color); margin-bottom: 30px; }
        .resume-item:last-child { border-right: 2px solid transparent; }
        
        /* نقطه تایم لاین */
        .resume-item::before { content: ''; position: absolute; right: -6px; top: 0; width: 10px; height: 10px; background: var(--primary-color); border-radius: 50%; border: 2px solid var(--white); box-shadow: 0 0 0 2px var(--primary-color); }

        .job-date { font-size: 0.85rem; color: var(--secondary-color); font-weight: 700; margin-bottom: 5px; display: block; }
        .job-title { font-size: 1.2rem; font-weight: 700; color: var(--dark-color); margin-bottom: 5px; }
        .job-company { font-size: 0.95rem; color: #475569; font-weight: 600; margin-bottom: 10px; display: block; }
        .job-desc { color: #64748b; font-size: 0.95rem; text-align: justify; }

        @media (max-width: 768px) {
            .profile-layout { flex-direction: column; }
            .profile-card { position: static; }
        }
