    /* Define page size for printing (US Letter) */
    @page {
      size: letter;
      margin: 20mm;
    }
    /* Global Styles */
    body {
      font-family: Arial, sans-serif;
      font-size: 12pt;
      line-height: 1.5;
      color: #333;
      background-color: #f9f9f9;
      margin: 0;
      padding: 0;
    }
    .cv-container {
      width: 21.6cm;
      min-height: 27.9cm;
      margin: 20px auto;
      background-color: #fff;
      padding: 20mm;
      box-shadow: 0 0 5px rgba(0,0,0,0.1);
    }
    header {
      text-align: center;
      margin-bottom: 20px;
    }
    header h1 {
      font-size: 24pt;
      margin: 0;
    }
    header h2 {
      font-size: 14pt;
      color: #555;
      margin: 5px 0 0 0;
    }
    section {
      margin-bottom: 15px;
    }
    section h3 {
      font-size: 16pt;
      color: #0056b3;
      border-bottom: 1px solid #ccc;
      padding-bottom: 5px;
      margin-bottom: 10px;
    }
    p, ul {
      margin: 0 0 10px 0;
    }
    ul {
      list-style: none;
      padding-left: 0;
    }
    li {
      margin-bottom: 5px;
    }
    /* Sober link styles */
    a {
      color: #0056b3;
      text-decoration: none;
    }
    a:hover {
      text-decoration: underline;
    }
    /* Print styles: Remove box-shadow for clean printing */
    @media print {
      .cv-container {
        box-shadow: none;
        margin: 0;
        padding: 0;
      }
    }
