html {
        scroll-behavior: smooth;
      }

      body {
        font-family: 'Open Sans', sans-serif;
        font-size: 18px;
        font-weight: 400;
        color: #fff;
        overflow-x: hidden;
        background-image: url('../img/bg-01.jpg');
        background-size: 100%;
        padding: 15px 0 0 0;
      }

      .gallery-container {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        display: flex;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding: 20px 0;
      }

      #gallery-track {
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
      }

      .gallery-container img {
        height: 260px;
        flex-shrink: 0;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      }

      .gallery-container::-webkit-scrollbar {
        height: 8px;
      }

      .gallery-container::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 4px;
      }

      .GeneratedTable {
        width: 100%;
        margin: 20px auto;
        border-collapse: collapse;
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
      }

      .GeneratedTable th,
      .GeneratedTable td {
        padding: 15px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      }

      .GeneratedTable a {
        color: #bab9e9 !important;
        font-weight: bold;
      }

      .tm-call-to-action-text {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        padding: 40px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        color: #fff;
      }

      .tm-feature-name2 {
        color: #fff;
        margin-bottom: 10px;
        font-weight: 600;
      }

      .tm-feature-box {
        background-color: rgba(0, 0, 0, 0.4);
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
        height: 100%;
      }

      .tm-feature-icon-container img {
        transition: transform 0.3s ease;
      }

      .tm-feature-icon-container:hover img {
        transform: scale(1.1);
      }

      .tm-call-to-action-title {
        text-align: center;
        margin-bottom: 40px;
      }

      @media (max-width: 768px) {
        .tm-brand-container {
    	  display: flex;
 	  align-items: center;
 	  justify-content: center;
 	  padding-top: 30px;
	  padding-bottom: 20px;
        }

        .tm-brand-container i img {
          height: 100px !important;
          width: 100px !important;
  	  display: block;
  	  margin: 0 auto;
        }

        .tm-brand-texts {
  	  margin-top: 10px !important;
  	  text-align: center !important;
        }

        .tm-brand-name {
          font-size: 1.6rem !important;
        }

        .gallery-container img {
          height: 150px !important;
        }

        .GeneratedTable td {
          font-size: 14px !important;
          padding: 10px !important;
        }

        .tm-feature-box {
          margin-bottom: 30px;
        }


      }