.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    background-color: #f9f9f9;
  }

  .about-content {
    flex: 1;
    padding-right: 20px;
  }

  .about-content h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
  }

  .about-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
  }

  .about-image {
    flex: 1;
    text-align: center;
  }

  .about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .about-section {
      flex-direction: column;
      padding: 30px;
    }

    .about-content {
      padding-right: 0;
      margin-bottom: 20px;
      text-align: center;
    }

    .about-content h2 {
      font-size: 28px;
    }

    .about-content p {
      font-size: 16px;
    }
  }