body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
  }
  .about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  .hero-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #007bff;
    color: #fff;
    border-radius: 8px;
    padding: 40px 20px;
    margin-bottom: 20px;
  }
  .hero-section img {
  flex: 1 1 auto; /* Ensure the image adjusts dynamically */
  max-width: 100%; /* Ensure it does not overflow */
  width: 300px; /* Set a medium fixed width */
  height: auto; /* Maintain aspect ratio */
  border-radius: 8px; /* Optional: Keeps the rounded corners */
}
  .hero-section .content {
    flex: 1 1 60%;
    padding: 20px;
  }
  .hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  .hero-section p {
    font-size: 1.2rem;
    margin: 10px 0;
  }
  .about-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .about-details .detail {
    flex: 1 1 calc(33% - 20px);
    margin: 10px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  .about-details .detail img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    border-radius: 50%;
  }
  .about-details .detail h3 {
    margin-bottom: 10px;
  }
  .about-details .detail p {
    font-size: 1rem;
    color: #555;
  }
  @media screen and (max-width: 768px) {
    .hero-section {
      flex-direction: column;
    }
    .hero-section img {
      margin-bottom: 20px;
    }
    .about-details .detail {
      flex: 1 1 100%;
    }
  }
  