.about-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px; 
    padding: 40px 20px; 
    margin: 0 auto;
    max-height: 200px;
    max-width: 800px; /* stops the content from stretching too wide */
  }
  
  .about-info,
  .about-skills {
    width: 48%; /* equal widths that leave room for spacing */
  }
 
  
  .about-info h2,
  .about-skills h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 500;
    font-family: "Century Schoolbook", "Georgia", serif;
    color: #0cceff;
  }
  
  .about-info p,
  .about-skills p {
    line-height: 1.6rem;
    text-align: left;
    margin: 0; /* remove weird spacing */
  }
  
  
  .about-skills p {
    line-height: 1.8rem;
    margin-left: 130px;
  }
  
  .about-skills div {
    display: flex;
    flex-direction: column;
    gap: 10px; /* tighter skill list */
  }


  

/* Mobile Styles */
@media (max-width: 600px) {
    .about-container {
      flex-direction: column;
      align-items: center;
      max-height: none;
      padding: 20px 10px;
      gap: 30px;
    }
  
    .about-info,
    .about-skills {
      width: 100%;
      text-align: center;
    }
  
    .about-info h2,
    .about-skills h2 {
      font-size: 1.5rem;
      margin-bottom: 10px;
    }
  
    .about-info p,
    .about-skills p {
      line-height: 1.5rem;
      text-align: center;
    }
  
    .about-skills p {
      margin-left: 0;
    }
  
    .about-skills div {
      align-items: center;
    }
  }
  
  /* Tablet Styles */
  @media (min-width: 601px) and (max-width: 1024px) {
    .about-container {
      flex-direction: column;
      align-items: center;
      max-height: none;
      padding: 30px 20px;
      gap: 40px;
    }
  
    .about-info,
    .about-skills {
      width: 90%;
      text-align: center;
    }
  
    .about-info h2,
    .about-skills h2 {
      font-size: 1.8rem;
      margin-bottom: 15px;
    }
  
    .about-info p,
    .about-skills p {
      line-height: 1.6rem;
      text-align: center;
    }
  
    .about-skills p {
      margin-left: 0;
    }
  
    .about-skills div {
      align-items: center;
    }
  }
  