@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;700&display=swap');
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'JetBrains Mono', 'Courier New', monospace;
      background-color: #fdfdfd;
      color: #2c2c2c;
      line-height: 1.6;
    }

    .header {
      position: fixed;
      top: 0;
      right: 0;
      padding: 2rem;
      z-index: 1000;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: #2c2c2c;
      font-weight: 400;
      font-size: 1.1rem;
      transition: all 0.2s ease;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: #666;
    }

    .container {
      display: flex;
      min-height: 100vh;
    }

    .sidebar {
      width: 30%;
      background: #fdfdfd;
      padding: 3rem 2rem;
      position: fixed;
      height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      border-right: 2px solid #2c2c2c;
    }

    .profile-section {
      text-align: center;
      max-width: 300px;
    }

    .profile-wrapper {
      width: 100;
      height: auto;
      border-radius: 50%;
      border: 2px solid #2c2c2c;
      margin: 0 auto 2rem;
      overflow: hidden;
      background: #4a90e2;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .profile-pic {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .sidebar h1 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: #2c2c2c;
    }

    .about-text {
      font-size: 0.95rem;
      color: #2c2c2c;
      line-height: 1.6;
      margin-bottom: 2rem;
      text-align: left;
    }

    .social-links {
      display: flex;
      justify-content: center;
      gap: 1rem;
    }

    .social-links a {
      width: 50px;
      height: 50px;
      /* border: 2px solid #2c2c2c; */
      /* border-radius: 50%; */
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      color: #2c2c2c;
      text-decoration: none;
      font-size: 2.5rem;
      transition: all 0.2s ease;
    }

    .social-links a:hover {
      background: #2c2c2c;
      color: #fdfdfd;
    }

    .content {
      margin-left: 30%;
      padding: 6rem 3rem 3rem;
      width: calc(100% - 400px);
      max-width: 800px;
    }

    section {
      margin-bottom: 4rem;
    }

    h2 {
      font-size: 1.8rem;
      font-weight: 500;
      margin-bottom: 2rem;
      color: #2c2c2c;
    }

    p {
      margin-bottom: 1.5rem;
      font-size: 1rem;
      color: #2c2c2c;
      line-height: 1.7;
    }

    .simple-list {
      list-style: none;
      margin: 2rem 0;
    }

    .simple-list li {
      margin-bottom: 1rem;
      padding: 1rem;
      border: 1px solid #e0e0e0;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .simple-list li strong {
      color: #2c2c2c;
      display: block;
      margin-bottom: 0.5rem;
    }

    a {
      color: #2c2c2c;
      text-decoration: underline;
    }

    a:hover {
      color: #666;
    }

    footer {
      margin-top: 4rem;
      padding-top: 2rem;
      border-top: 1px solid #e0e0e0;
      text-align: center;
      font-size: 0.9rem;
      color: #666;
    }

    @media (max-width: 768px) {
      .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding: 1rem;
        text-align: center;
        border-bottom: 2px solid #2c2c2c;
        background: rgba(253, 253, 253, 0.95);
        z-index: 1000;
      }

      .nav-links {
        justify-content: center;
        gap: 1.5rem;
      }

      .nav-links a {
        font-size: 1rem;
      }

      .container {
        flex-direction: column;
        padding-top: 60px;
      }

      .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 2rem;
        border-right: none;
        border-bottom: 2px solid #2c2c2c;
      }

      .profile-wrapper {
        width: 180px;
        height: 180px;
      }

      .sidebar h1 {
        font-size: 1.6rem;
      }

      .content {
        margin-left: 0;
        width: 100%;
        padding: 2rem;
      }

      h2 {
        font-size: 1.4rem;
      }
    }