body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
  }
  
  a {
    color: #4dabf7;
    text-decoration: none;
  }
  
  .container {
    width: 90%;
    max-width: 800px;
    margin: 40px auto;
  }
  
  .profile-card {
    display: flex;
    align-items: center;
    background: #1e1e1e;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  }
  
  .profile-pic {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    margin-right: 20px;
    object-fit: cover;
  }
  
  .profile-info h2 {
    margin: 0 0 5px;
  }
  
  .subtitle {
    font-style: italic;
    font-size: 0.9em;
    color: #bbbbbb;
  }
  
  section {
    margin-bottom: 30px;
  }
  
  .highlight {
    color: #f97316;
    font-weight: bold;
  }
  
  .job {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #1a1a1a;
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
  }
  
  .job img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
  
  
  .social-footer {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    padding-bottom: 20px;
  }
  
  .social-footer a img {
    width: 28px;
    height: 28px;
    filter: invert(100%);
    transition: transform 0.2s ease;
  }
  
  .social-footer a:hover img {
    transform: scale(1.2);
  }
  