body {
    background-color: #f1f2f6;
    margin: 0;
    font-family: "Segoe UI", sans-serif;
  }
  
  .card-wrapper {
    max-width: 750px;
    margin: 40px auto;
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
  }
  
  .card-header img {
    max-height: 50px;
    margin-bottom: 20px;
  }
  
  .card-footer img {
    max-height: 30px;
    margin-bottom: 20px;
  }
  
  #userPhoto {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    margin: 0 auto 15px;
    display: block;
  }
  
  #userName {
    font-size: 22px;
    font-weight: 600;
    margin: 10px 0 6px;
    color: #1a1a1a;
  }
  
  #jobTitleText {
    font-size: 15px;
    font-weight: 500;
    color: #666;
    margin-bottom: 4px;
  }
  
  #bodyText {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
  }
  
  #breakLine {
    text-align: center;
    margin: 12px 0;
  }
  
  #links {
    text-align: center;
    margin-top: 12px;
  }
  
  .contact-link {
    display: inline-block;
    width: 280px;
    line-height: 1.2;
    padding: 10px 12px;
    margin: 8px 5px;
    background-color: #2c3e50;
    color: #fff !important;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s ease-in-out;
    white-space: normal;
    overflow: hidden;
  }
  
  .contact-link:hover {
    background-color: #1a252f;
    color: #fff;
    text-decoration: none;
  }
  
  .contact-link img,
  .contact-link i {
    vertical-align: middle;
    margin-right: 6px;
    height: 18px;
  }
  
  #QRCode,
  .qr-code {
    display: block;
    margin: 30px auto 0;
    width: 160px;
  }
  
  footer {
    margin-top: 40px;
  }
  
  .container-footer {
    padding-top: 10px;
  }
  
  .footer-social-icons {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .footer-social-icons li a {
    font-size: 1.4em;
    color: #555;
    text-decoration: none;
  }
  
  .footer-social-icons li a:hover {
    color: #007bff;
  }
  
  .btn-outline-primary {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 18px;
    border-radius: 8px;
    border: 1px solid #007bff;
    color: #007bff;
    background: transparent;
    text-decoration: none;
    font-weight: 500;
  }
  
  .btn-outline-primary:hover {
    background-color: #007bff;
    color: #fff;
  }
  