      @import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

      :root {
        --bg-color: #ffffff;
        --text-main: #111827;
        --text-muted: #4b5563;
        --text-light: #6b7280;
        --line: #e5e7eb;
        --accent: #4f46e5;
      }

      * {
        box-sizing: border-box;
      }

      body {
        margin: 0;
        font-family: "Inter", Arial, sans-serif;
        background: var(--bg-color);
        color: var(--text-main);
        line-height: 1.6;
        padding: 40px 24px;
      }

      .resume {
        max-width: 960px;
        margin: 0 auto;
        border: 1px solid var(--line);
        padding: 40px;
        background: #ffffff;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
      }

      h1,
      h2,
      h3,
      p {
        margin: 0;
      }

      h1 {
        font-size: clamp(2rem, 6vw, 3rem);
        letter-spacing: -0.04em;
        color: var(--text-main);
        font-weight: 700;
      }

      h3 {
        color: var(--text-main);
        font-weight: 600;
      }

      .sub {
        color: var(--text-muted);
        margin-top: 8px;
        font-size: 1.125rem;
        font-weight: 500;
      }

      .row {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        color: var(--text-muted);
        margin-top: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--line);
        font-size: 0.95rem;
      }

      section {
        padding: 28px 0;
        border-bottom: 1px solid var(--line);
      }

      section:last-child {
        border-bottom: 0;
        padding-bottom: 0;
      }

      .label {
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-size: 0.85rem;
        color: var(--accent);
        font-weight: 600;
        margin-bottom: 16px;
      }

      ul {
        margin: 12px 0 0;
        padding-left: 20px;
        color: var(--text-muted);
      }

      li {
        margin-bottom: 8px;
      }

      .grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
      }

      .small {
        color: var(--text-muted);
        font-size: 0.95rem;
        line-height: 1.6;
      }

      .bullet-list {
        list-style: none;
        margin: 8px 0 16px 0;
        padding: 0;
      }

      .bullet-list li {
        color: var(--text-muted);
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 8px;
        padding-left: 16px;
        position: relative;
      }

      .bullet-list li::before {
        content: "•";
        position: absolute;
        left: 0;
        color: var(--accent);
        font-weight: bold;
      }

      @media (max-width: 720px) {
        body {
          padding: 16px;
          background: var(--bg-color);
        }

        .resume {
          padding: 24px;
          box-shadow: none;
          border: none;
        }

        .grid {
          grid-template-columns: 1fr;
          gap: 16px;
        }
      }

      @media print {
        body {
          padding: 0;
          background: white;
        }

        .resume {
          border: 0;
          box-shadow: none;
          padding: 0;
          max-width: 100%;
        }

        .row,
        section {
          border-color: #e5e7eb;
        }
      }