.sparrow {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 2rem;
      background-color: #f5f9ff;
      flex-wrap: wrap;
    }

    /* Left Content */
    .parrot {
      flex: 1 1 400px;
      max-width: 600px;
    }

    .parrot h1 {
      font-size: 2rem;
      font-weight: bold;
      color: #1f2937;
      margin-bottom: 1rem;
    }

    .parrot p {
      font-size: 1rem;
      color: #4b5563;
      margin-bottom: 1.5rem;
    }

    .pigeon {
      display: inline-block;
      background-color: #0056d2;
      color: #fff;
      padding: 0.75rem 1.25rem;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .pigeon:hover {
      background-color: #003f99;
    }

    .peacock {
      display: block;
      margin-top: 0.75rem;
      font-size: 0.9rem;
      color: #0056d2;
      text-decoration: none;
    }

    /* Right Image */
    .eagle {
      flex: 1 1 300px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 2rem;
    }

    .eagle img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .sparrow {
        flex-direction: column;
        text-align: center;
      }

      .parrot h1 {
        font-size: 1.8rem;
      }

      .pigeon {
        width: 100%;
        text-align: center;
      }

      .peacock {
        text-align: center;
      }
    }





    .sofa {
      text-align: center;
      padding: 2rem 1rem;
      background-color: #fff;
    }

    .sofa h2 {
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 2rem;
      color: #111827;
    }

    .table {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 2rem;
      align-items: center;
      justify-items: center;
      max-width: 1000px;
      margin: 0 auto;
    }

    .chair img {
      max-height: 60px;
      max-width: 120px;
      object-fit: contain;
      filter: grayscale(0%);
      transition: transform 0.3s ease, filter 0.3s ease;
    }

    .chair img:hover {
      transform: scale(1.1);
      filter: grayscale(20%);
    }

    /* Responsive text */
    @media (max-width: 768px) {
      .sofa h2 {
        font-size: 1.25rem;
      }
    }

    @media (max-width: 480px) {
      .sofa h2 {
        font-size: 1rem;
      }
    }




    .lion {
      padding: 2rem;
      background-color: #fff;
      overflow: hidden;
    }

    .lion h3 {
      font-size: 1rem;
      color: #374151;
      font-weight: bold;
      margin-bottom: 0.5rem;
    }

    .lion h2 {
      font-size: 2rem;
      font-weight: bold;
      color: #111827;
      margin-bottom: 0.5rem;
    }

    .lion p {
      color: #4b5563;
      margin-bottom: 1.5rem;
    }

    /* Carousel wrapper */
    .tiger {
      display: flex;
      gap: 1rem;
      overflow-x: auto;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 1rem;
    }

    .tiger::-webkit-scrollbar {
      display: none;
    }

    .elephant {
      flex: 0 0 280px;
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      overflow: hidden;
      background: #fff;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .elephant:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    }

    .elephant img {
      width: 100%;
      height: 160px;
      object-fit: cover;
    }

    .zebra {
      padding: 1rem;
    }

    .zebra h4 {
      font-size: 1rem;
      font-weight: bold;
      margin-bottom: 0.25rem;
      color: #111827;
    }

    .zebra p {
      font-size: 0.875rem;
      color: #6b7280;
      margin-bottom: 0.5rem;
    }

    .giraffe {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 0.5rem;
    }

    .giraffe img {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      object-fit: cover;
    }

    .giraffe span {
      font-size: 0.85rem;
      color: #111827;
      font-weight: 500;
    }

    .monkey {
      display: inline-block;
      margin-top: 1.5rem;
      padding: 0.6rem 1.2rem;
      border: 1px solid #0056d2;
      border-radius: 8px;
      text-decoration: none;
      color: #0056d2;
      font-weight: bold;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    .monkey:hover {
      background-color: #0056d2;
      color: #fff;
    }

    /* Buttons */
    .dog {
      display: flex;
      justify-content: space-between;
      margin: 1rem 0;
    }

    .dog button {
      background: #0056d2;
      color: #fff;
      border: none;
      padding: 0.6rem 1rem;
      border-radius: 8px;
      cursor: pointer;
      font-weight: bold;
      transition: background 0.3s ease;
    }

    .dog button:hover {
      background: #003f99;
    }

    @media (max-width: 768px) {
      .lion h2 {
        font-size: 1.5rem;
      }
    }

    @media (max-width: 480px) {
      .lion h2 {
        font-size: 1.25rem;
      }
    }