/* About Section */
.about {
    display: flex;
    text-align: center;
    margin: auto;
    max-width: 900px;
    justify-content: center;
  }
  
  .about-flex {
    display: flex;
    flex-direction: column;     /* Stack on small screens */
    align-items: center;        /* Center image and text horizontally */
    text-align: center;
  }
  
  .about-flex img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .about-text {
    max-width: 700px;
    margin-top: 1rem;           /* Add space between image and text */
  }
  
  @media (min-width: 768px) {
    .about-flex {
      flex-direction: row;      /* Side-by-side on large screens */
      align-items: center;      /* Vertically align image & text */
      text-align: left;
    }
  
    .about-text {
      margin-top: 0;            /* Remove top margin */
      margin-left: 2rem;        /* Space between image and text */
    }
  }
  