*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Inter', sans-serif;
      background: #f0f2f7;
      color: #1e293b;
      font-size: 14px;
      line-height: 1.6;
    }

    a { color: inherit; text-decoration: none; }

    /* ── HEADER ── */
    header {
      background: #fff;
      padding: 14px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid #e2e8f0;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 1px 4px rgba(0,0,0,.06);
    }

    .header-left { display: flex; align-items: center; gap: 14px; }

    .avatar {
      width: 52px; height: 52px; border-radius: 50%;
      background: #cbd5e1;
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: 18px; color: #475569;
      flex-shrink: 0;
      overflow: hidden;
    }

    .avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 15%;
      border-radius: 50%;
    }

    .header-name h1 { font-size: 20px; font-weight: 700; color: #0f172a; }
    .header-name p  { font-size: 13px; color: #2563eb; font-weight: 500; }

    .btn-download {
      display: inline-flex; align-items: center; gap: 8px;
      background: #2563eb; color: #fff;
      padding: 9px 18px; border-radius: 8px;
      font-size: 13px; font-weight: 600;
      border: none; cursor: pointer; transition: background .2s;
    }
    .btn-download:hover { background: #1d4ed8; }
    .btn-download svg { width: 15px; height: 15px; }

    /* ── LAYOUT ── */
    .page {
      max-width: 1100px;
      margin: 28px auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 20px;
    }

    /* ── CARD ── */
    .card {
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 20px;
      box-shadow: 0 1px 4px rgba(0,0,0,.06);
    }

    .card h3 {
      font-size: 13px; font-weight: 700;
      color: #0f172a; margin-bottom: 14px;
      text-transform: none; letter-spacing: 0;
    }

    /* ── CONTACT ── */
    .contact-item {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 13px; color: #475569; margin-bottom: 10px;
    }
    .contact-item svg { flex-shrink: 0; margin-top: 2px; color: #94a3b8; }

    /* ── PERSONAL ── */
    .personal-item {
      display: flex; align-items: center; gap: 10px;
      font-size: 13px; color: #475569; margin-bottom: 8px;
    }
    .personal-item svg { color: #94a3b8; flex-shrink: 0; }

    /* ── LINKS ── */
    .link-item {
      display: flex; align-items: center; gap: 10px;
      font-size: 13px; color: #334155; margin-bottom: 9px;
      transition: color .15s;
    }
    .link-item:hover { color: #2563eb; }
    .link-icon {
      width: 28px; height: 28px; border-radius: 6px;
      background: #f1f5f9;
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; color: #64748b; flex-shrink: 0;
    }

    /* ── LANGUAGES ── */
    .lang-item {
      border-left: 3px solid #2563eb;
      padding-left: 10px;
      margin-bottom: 12px;
    }
    .lang-item strong { font-size: 13px; color: #0f172a; display: block; }
    .lang-item span   { font-size: 12px; color: #94a3b8; }

    /* ── SECTION TITLE (right col) ── */
    .section-title {
      display: flex; align-items: center; gap: 8px;
      font-size: 15px; font-weight: 700; color: #0f172a;
      margin-bottom: 18px;
    }
    .section-title svg { color: #2563eb; }

    /* ── ABOUT ── */
    .about-text { font-size: 13.5px; color: #475569; line-height: 1.75; margin-bottom: 10px; }
    .about-text:last-child { margin-bottom: 0; }

    /* ── TIMELINE (projects / volunteer) ── */
    .job { display: flex; gap: 14px; margin-bottom: 24px; }
    .job:last-child { margin-bottom: 0; }

    .job-dot-col { display: flex; flex-direction: column; align-items: center; padding-top: 3px; }
    .job-dot {
      width: 18px; height: 18px; border-radius: 50%;
      background: #2563eb; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .job-dot::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #fff; }
    .job-line { width: 2px; background: #e2e8f0; flex: 1; margin-top: 4px; }

    .job-content { flex: 1; }
    .job-header { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 4px; }
    .job-title  { font-size: 14px; font-weight: 700; color: #0f172a; }
    .job-date   { font-size: 12px; color: #94a3b8; white-space: nowrap; }
    .job-company{ font-size: 13px; color: #2563eb; font-weight: 600; margin: 2px 0 6px; }
    .job-desc   { font-size: 13px; color: #64748b; margin-bottom: 8px; }
    .job-bullets { list-style: none; }
    .job-bullets li {
      font-size: 12.5px; color: #64748b;
      padding-left: 14px; position: relative; margin-bottom: 4px;
    }
    .job-bullets li::before { content: '•'; position: absolute; left: 0; color: #2563eb; }

    /* ── EDUCATION ── */
    .edu-item { display: flex; gap: 14px; margin-bottom: 18px; }
    .edu-item:last-child { margin-bottom: 0; }
    .edu-icon {
      width: 34px; height: 34px; border-radius: 50%;
      background: #16a34a;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 2px;
    }
    .edu-icon svg { color: #fff; }
    .edu-title  { font-size: 14px; font-weight: 700; color: #0f172a; }
    .edu-school { font-size: 13px; color: #2563eb; font-weight: 600; }
    .edu-years  { font-size: 12px; color: #94a3b8; }
    .edu-desc   { font-size: 12.5px; color: #64748b; margin-top: 2px; }

    /* ── SKILLS ── */
    .skills-category { margin-bottom: 16px; }
    .skills-category h4 { font-size: 12px; font-weight: 600; color: #475569; margin-bottom: 8px; }
    .tags { display: flex; flex-wrap: wrap; gap: 6px; }
    .tag {
      font-size: 11.5px; font-weight: 500;
      padding: 4px 10px; border-radius: 999px;
    }
    .tag-blue { background: #2563eb; color: #fff; }
    .tag-grey { background: #e2e8f0; color: #334155; }

    /* ── HOBBIES ── */
    .hobby-tags { display: flex; flex-wrap: wrap; gap: 8px; }
    .hobby-tag {
      font-size: 12.5px; background: #eff6ff; color: #2563eb;
      padding: 5px 12px; border-radius: 999px; border: 1px solid #bfdbfe;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 720px) {
      .page { grid-template-columns: 1fr; }
      header { padding: 12px 16px; }
    }

    @media print {
      body { background: #fff; }
      header { position: static; box-shadow: none; }
      .btn-download { display: none; }
    }
