
        :root {
            --primary: #0f172a;
            --accent: #3b82f6;
            --accent-light: #eff6ff;
            --bg-body: #f1f5f9;
            --bg-white: #ffffff;
            --text-main: #1e293b;
            --text-muted: #64748b;
            --border: #e2e8f0;
            --radius: 14px;
            --container: 960px;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Vazirmatn', sans-serif; background-color: var(--bg-body); color: var(--text-main); line-height: 1.9; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; display: block; }
        .container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }


        .breadcrumb { text-align: center; padding: 22px 0 18px; font-size: 0.85rem; color: var(--text-muted); }
        .breadcrumb a { color: var(--text-muted); }
        .breadcrumb a:hover { color: var(--accent); }
        .breadcrumb span { margin: 0 6px; opacity: 0.4; }

        .card {
            background: var(--bg-white);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            box-shadow: 0 1px 3px rgba(0,0,0,0.04);
            margin-bottom: 20px;
            overflow: hidden;
        }

        /* اطلاعات شخصی */
        .info-header {
            display: flex;
            align-items: center;
            gap: 32px;
            padding: 36px 36px 28px;
        }
        .info-header .avatar-wrap {
            flex-shrink: 0;
            width: 130px;
            height: 130px;
            border-radius: 50%;
            border: 4px solid var(--accent-light);
            overflow: hidden;
            box-shadow: 0 4px 14px rgba(59,130,246,0.12);
        }
        .info-header .avatar-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .info-header .name-block { flex: 1; }
        .info-header .name-block h1 { font-size: 1.75rem; font-weight: 800; color: var(--primary); margin-bottom: 2px; }
        .info-header .name-block .role { color: var(--accent); font-size: 1rem; font-weight: 600; margin-bottom: 14px; }
        .info-header .social-row { display: flex; gap: 8px; }
        .info-header .social-row a {
            width: 36px; height: 36px;
            display: inline-flex; align-items: center; justify-content: center;
            border-radius: 50%;
            background: var(--bg-body);
            color: var(--text-muted);
            font-size: 0.9rem;
            transition: 0.3s;
        }
        .info-header .social-row a:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }

        /* فقط شماره و ایمیل */
        .contact-row {
            display: flex;
            border-top: 1px solid var(--border);
        }
        .contact-item {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 18px 36px;
            transition: background 0.2s;
        }
        .contact-item:hover { background: var(--accent-light); }
        .contact-item:first-child { border-left: 1px solid var(--border); }
        .contact-item .icon-circle {
            width: 42px; height: 42px;
            border-radius: 50%;
            background: var(--accent-light);
            color: var(--accent);
            display: flex; align-items: center; justify-content: center;
            font-size: 0.95rem;
            flex-shrink: 0;
        }
        .contact-item .info-label { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 1px; }
        .contact-item .info-value { font-size: 0.92rem; font-weight: 600; color: var(--text-main); }

        /* بخش‌های متنی */
        .section-block { padding: 32px 36px; }
        .section-block:not(:last-child) { border-bottom: 1px solid var(--border); }
        .section-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--accent-light);
        }
        .section-title i { color: var(--accent); font-size: 1rem; }
        .section-block p { color: #475569; font-size: 0.93rem; margin-bottom: 12px; text-align: justify; }
        .section-block p:last-child { margin-bottom: 0; }


        @media(max-width: 640px) {
            .info-header { flex-direction: column; text-align: center; gap: 18px; padding: 28px 20px 22px; }
            .info-header .social-row { justify-content: center; }
            .contact-row { flex-direction: column; }
            .contact-item:first-child { border-left: none; border-bottom: 1px solid var(--border); }
            .contact-item { padding: 14px 20px; }
            .section-block { padding: 24px 20px; }
            .info-header .name-block h1 { font-size: 1.4rem; }
        }
