.about-container {
    text-align: center;
    margin: 2rem 0;
  }
  
  .heading {
    font-size: 3rem;
    color: #c6ac4b;
    padding: 1rem;
    background-color: #ebeae5;
    margin: 0;
  }
  
  .heading span {
    color: black;
  }

  .about-container1 {
    display: flex;
    flex-direction: row;
  }
  
  .text-container {
    flex: 1;
    padding-right: 20px; /* Adjust spacing between image and text */
  }
  
  .image-container {
    flex: 1;
  }
  
  .image {
    max-width: 100%; /* Ensure image doesn't exceed container width */
    border-radius: 50px; /* Add border radius */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add box shadow */
  }
  
  /* Additional styling for heading and paragraph */
  .heading1 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .paragraph {
    font-size: 16px;
    line-height: 1.5;
    color: rgb(199, 197, 130);
  }

  .image-row {
    display: flex;
    flex-wrap: wrap; /* Allow images to wrap to the next row */
    justify-content: space-between;
    margin-top: 60px;
  }
  
  /* Styles for individual images */
  .image1 {
    width: calc(33.33% - 10px); /* Adjust the width of each image */
    margin-bottom: 20px; /* Add some spacing between images */
    object-fit: cover; /* Ensure images maintain aspect ratio and cover the container */
    max-height: 250px; /* Set maximum height for each image */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .image-heading {
    text-align: center;
    margin-top: 20px;
    font-size: 24px;
    font-weight: bold;
  }