 

    /* Section with two columns */
    .section-two-columns {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      padding: 20px;
      background-color: #fff6cb;
      margin-bottom: 50px;
      margin-top: 50px;

    }

    .section-two-columns h2 {
      font-size: 32px;
      margin-bottom: 20px;
      text-align: center;
      color: #4dabd3;
      font-weight: bold;
    }

    .section-two-columns p {
      font-size: 18px;
      line-height: 1.6;
    }

    .section-two-columns img {
      max-width: 100%;
      border-radius: 8px;
      width: 80%;
      padding: 10px;
      margin: 10px;
      
    
    }

    /* Cards with icons */
    .card-icon {
      text-align: center;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      margin-bottom: 20px;
      margin-top: 20px;

    }

    .card-icon i {
      font-size: 36px;
      margin-bottom: 10px;
    }

    .card-icon h3 {
      font-size: 24px;
      margin-bottom: 15px;
    }

    .card-icon p {
      font-size: 16px;
    }

    /* Horizontal Scrollable Gallery */
    .gallery-container {
      overflow-x: auto;
      white-space: nowrap;
      padding-bottom: 10px;
      margin-bottom: 100px;
      margin-top: 150px;

    }

    .gallery-item {
      display: inline-block;
      margin-right: 10px;
    }

    .gallery-item img {
      width: 200px;
       
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    /* Section with two columns (reversed) */
    .section-two-columns-reversed {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      padding: 20px;
      background-color: #fff6cb;
      margin-bottom: 50px;
      

    }

    /* Section with two columns (reversed) - Adjust the image size */
    .section-two-columns-reversed img {
      max-width: 100%;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      width: 80%;
      padding: 10px;
      margin: 10px;
    }

    .section-two-columns-reversed h2 {
      font-size: 32px;
      margin-bottom: 20px;
      text-align: center;
    }

    .section-two-columns-reversed p {
      font-size: 18px;
      line-height: 1.6;
    }


img {
  pointer-events: none;
  user-drag: none;
}

a {
   text-decoration: none !important;
}


