.about-container {
    display: flex;
    margin-top: 10rem;
    margin-bottom: 5rem;
    width: 100%;
    justify-content: center;
  }
  
  .about-content {
    display: flex;
    gap: 20px;
    width: 80%;
  }
  
  .about-image {
    flex: 1;
    max-width: 50%;
  }
  
  .about-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
  }
  
  .about-text {
    flex: 2;
  }


  @media (max-width:1024px) {
    .about-content {
      flex-direction: column;
    }

    .about-image {
      max-width: 100%;
    }
  }