/* Career page specific styles */
.career-content {
    margin: 0;
    padding: 0;
    position: relative;
    left: 397px;
    margin-top: 80px;
    max-width: 650px;
  }
  
  .career-content section {
    margin-bottom: 60px;
  }
  
  .career-content h2 {
    font-family: "American Typewriter", "Courier New", Courier, monospace;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .career-content p {
    font-family: "American Typewriter", "Courier New", Courier, monospace;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .external-link {
    text-decoration: underline;
    display: inline-block;
    margin-top: 10px;
    text-decoration-color: red;
  }
  .external-link:hover {
    text-decoration: none;
  }
  
  .backstory ul {
    list-style: none;
    padding: 0;
  }
  
  .backstory li {
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
  }
  
  .circle {
    margin-right: 10px;
  }
  
  .active {
    color: #ff0000;
    text-decoration: none;
  }
  
  .underline {
    text-decoration: underline;
  }
  .underline:hover {
    text-decoration: none;
  }
  
  /* Responsive adjustments */
  @media (max-width: 1200px) {
    .career-content {
      left: 33%;
    }
  }
  
  @media (max-width: 768px) {
    .career-content {
      left: 20px;
      margin-top: 40px;
      padding: 0 20px;
    }
  }
  a{
    text-decoration-color:red ;
  }