.intro-section {
    text-align: center;
    padding: 80px 20px 40px;
    max-width: 900px;
    margin: 0 auto;
  }

  .intro-section h1 {
    font-size: 2.2rem;
    color: #0b9b5d;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .intro-section p {
    font-size: 1.1rem;
    color: #555;
    font-style: italic;
    line-height: 1.6;
  }

  /* ✅ Alternating Sections */
  .leftRight {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 10%;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s ease;
  }

  .leftRight.show {
    opacity: 1;
    transform: translateY(0);
  }

  .leftRight:nth-child(even) {
    flex-direction: row-reverse;
    background: #fff;
  }

  .leftRight:nth-child(odd) {
    background: #f3f3f3;
  }

  .text {
    flex: 1 1 45%;
  }

  .text h2 {
    font-size: 1.8rem;
    color: #0b9b5d;
    margin-bottom: 15px;
  }

  .text p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
  }

  .image {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
  }

  .image img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.8s ease;
  }

  .leftRight.show .image img {
    transform: scale(1.05);
  }

  @media (max-width: 768px) {
    .leftRight {
      flex-direction: column !important;
      text-align: center;
    }

    .text, .image {
      flex: 1 1 100%;
    }

    .image img {
      max-width: 90%;
    }
  }