      /* Card Styling */
      .styling {
          margin-right: 80px;
          margin-top: 20px;
      }

      .card {
          width: 270px;
          height: 200px;
          position: relative;
          transform-style: preserve-3d;
          transition: transform 0.6s ease;
          cursor: pointer;
      }

      .card:hover {
          transform: rotateY(180deg);
          /* Rotates the card on hover */
      }

      /* Front and Back Card Faces */
      .card-front,
      .card-back {
          width: 100%;
          height: 100%;
          position: absolute;
          backface-visibility: hidden;
          /* Hides the back face when rotated */
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          border-radius: 10px;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          padding: 20px;
      }

      /* Front Side */
      .card-front {
          color: white;
      }

      /* Back Side */
      .card-back {
          color: black;
          transform: rotateY(180deg);
          /* Initially hidden */
      }

      /* Responsive Design */
      @media (max-width: 600px) {
          .card {
              width: 250px;
              height: 150px;
          }

          .card-front h2,
          .card-back h2 {
              font-size: 1.2rem;
          }

          .card-front p,
          .card-back p {
              font-size: 0.9rem;
          }
      }

      /* Responsive styling for width of 1024px */
      @media (max-width: 1024px) {
          .card {
              width: 100%;
              height: auto;
              margin-bottom: 20px;
          }

          .styling {
              margin-right: 0;
              margin-top: 10px;
              text-align: center;
          }

          .card-front,
          .card-back {
              width: 100%;
              height: auto;
          }
      }