/* about.css */

#about-section {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    padding: 100px;
    /* background-color: white; */
    color: #333;
  }
  
  /* Left Column - Image & Stats */
  .about-image {
    flex: 1 1 300px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 600px;
    border-radius: 10px;
    /* padding-top: 30px; */
  }
  
  .about-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    background: black;
    margin-bottom: 1rem;
  }
  
  .stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 100%;
    padding: 10px 0;
  }
  
  .stat-box {
    background-color: #fff;
    padding: 12px 16px;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    min-width: 120px;
    flex: 1 1 45%;
    max-width: 45%;
    box-sizing: border-box;
  }
  
  .stat-box h3 {
    margin: 0;
    font-size: 22px;
    color: #212529;
    font-weight: 700;
    text-align: left;
  }
  
  .stat-box p {
    margin: 0;
    font-size: 0.9rem;
    color: #6c757d;
    text-align: left;
  }
  
  /* Right Column - Text Content */
  .about-text {
    flex: 2 1 400px;
  }
  
  .about-text h4 {
    font-size: 24px;
    /* margin-top: 2rem; */
    margin-bottom: 0.5rem;
    color: #212529;
    line-height: 2rem;
    font-weight: bold;
    gap: 2rem  ;
  }
  
  .about-text p {
    margin: 0.5rem 0;
    line-height: 1.6;
    font-size: 18px;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
  }
  
  .about-text ul {
    margin: 1rem 0 1rem 1.5rem;
    padding-left: 0;
    list-style-type: disc;
  }
  
  .about-text ul > li:first-child {
    font-weight: 600;
    list-style-type: none;
    margin-bottom: 0.5rem;
  }
  
  .about-text li {
    margin-bottom: 0.5rem;
    font-size: 18px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    #about-section {
      flex-direction: column;
      align-items: center;
      padding: 30px;
    }
  
    .about-image, .about-text {
      max-width: 100%;
    }
  
    .stats {
      justify-content: center;
    }
  }
  