
  /* Global Styles */
  body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fcfcfc;
    color: #333;
  }

  h2 {
    text-align: center;
    margin: 20px;
    color: #2c3e50;
  }

  p {
    line-height: 1.7;
    color: #555;
  }

  .about-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }

  .section {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .section img {
    width: 50%;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 20px;
  }

  .section-content {
    flex: 1;
    padding: 0 20px;
  }

  .section-content p {
    font-size: 18px;
  }

  .section img {
    height: 300px;
  }

  /* Left and Right Image Section Handling */
  .image-right {
    flex-direction: row-reverse;
  }

  .image-left {
    flex-direction: row;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .section {
      flex-direction: column; /* Stack image and text for all sections */
    }

    .section img {
      width: 100%;
      margin: 0 0 20px 0;
    }

    .section-content {
      padding: 0;
    }
  }
