:root {
    --accent: #2f6fed;
    --text-dark: #1f2933;
    --text-light: #6b7280;
    --bg-soft: #f9fafb;
  }

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Inter", Arial, sans-serif;
  }

  body {
    background: #e5e7eb;
    padding: 30px;
  }

  .resume {
    max-width: 900px;
    margin: auto;
    background: #ffffff;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
  }

  a:link {
    color:#00aaff
  }

  /* ---------- Left Column ---------- */
  .left-column {
    width: 26%;
    background: var(--bg-soft);
    padding: 30px 22px;
    border-right: 4px solid var(--accent);
  }

  .headshot {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin-bottom: 25px;
    background-color: #d1d5db;
    background-size: cover;
    background-position: center;
  }

  .section-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin: 25px 0 10px;
  }

  .left-column p,
  .left-column li {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 6px;
    line-height: 1.5;
  }

  .left-column ul {
    list-style: none;
  }

  /* ---------- Main Column ---------- */
  .main-column {
    width: 74%;
    padding: 40px 45px;
  }

  .name {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
  }

  .title {
    font-size: 17px;
    color: var(--accent);
    margin-bottom: 35px;
  }

  .main-section {
    margin-bottom: 35px;
  }

  .main-section h2 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
  }

  .main-section h2::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent);
    margin-top: 6px;
  }

  .item {
    margin-bottom: 20px;
  }

  .item h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
  }

  .item span {
    font-size: 13px;
    color: var(--text-light);
  }

  .item p {
    font-size: 14px;
    margin-top: 6px;
    color: #374151;
    line-height: 1.6;
  }

  .item ul {
    font-size: 13px;
    margin-top: 6px;
    color: #374151;
    line-height: 1.6;
    padding-left: 30px;
  }

  /* ---------- Print ---------- */
  @media print {
    body {
      background: none;
      padding: 0;
    }

    .resume {
      border-radius: 0;
    }
  }