.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 24px;
  color: #2c2c2c;
  background: #ffffff;
  line-height: 1.6;
  font-family: 'satoshi';
  font-display: swap
}

.container h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.container h2 {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.container p,
ul,
ol {
  margin-bottom: 1rem;
}

.container ul,
ol {
  padding-left: 1.2rem;
}

.container li {
  margin-bottom: 0.5rem;
  font-size: 13px;
}

.container p {
  font-size: 13px;
}

.container table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.container table th,
table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
  font-size: 13px;
}

.container thead {
  background-color: #f5f5f5;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container {
    padding: 16px;
  }

  .container h1 {
    font-size: 14px;
  }

  .container h2 {
    font-size: 12px;
  }

  .container table th,
  table td {
    font-size: 10px;
    padding: 8px;
  }

  .container li {
    font-size: 12px;
  }

  .container p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 12px 4px;
  }

  .container h1 {
    font-size: 14px;
  }

  .container h2 {
    font-size: 14px;
  }

  .container table th,
  table td {
    font-size: 13px;
    padding: 6px;
  }
}
@keyframes rotate {
    from { transform: rotate(0deg);   }
    to   { transform: rotate(360deg); }
  }
  
  .overlay {
    /* background: #fff; */
    background: rgba(0, 0, 0, 0.64);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9998;
    align-items: center;
    justify-content: center;
    display: flex;
  }
  
  
  .spinner {
    animation: rotate 1s linear infinite;
    background: #00bc9a;
    border-radius: 50%;
    height: 36px;
    width: 36px;
    position: relative;
  }
  
  .spinner::before,
  .spinner::after {
    content: '';
    position: absolute;
  }
  
  .spinner::before {
    border-radius: 50%;
    background:
        linear-gradient(0deg,   hsla(0, 0%, 100%, 1  ) 50%, hsla(0, 0%, 100%, 0.9) 100%)   0%   0%,
        linear-gradient(90deg,  hsla(0, 0%, 100%, 0.9)  0%, hsla(0, 0%, 100%, 0.6) 100%) 100%   0%,
        linear-gradient(180deg, hsla(0, 0%, 100%, 0.6)  0%, hsla(0, 0%, 100%, 0.3) 100%) 100% 100%,
        linear-gradient(360deg, hsla(0, 0%, 100%, 0.3)  0%, hsla(0, 0%, 100%, 0  ) 100%)   0% 100%
    ;
    background-repeat: no-repeat;
    background-size: 50% 50%;
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
  }
  
  .spinner::after {
    background: white;
    border-radius: 50%;
    top: 8%;
    bottom: 8%;
    left: 8%;
    right: 8%;
  }
.carousel-wrapper {
    width: 65%;
    overflow: hidden;
    position: relative;
    padding-bottom: 16px;
}

.carousel-container {
    width: 100%;
    margin: auto;
}

.carousel-track {
    display: grid;
    transition: transform 0.5s ease;
    grid-auto-flow: column;
}

.carousel-slide {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 20px 24px 8px;
    background: #fff;
    border-radius: 10px;
    width: 100%;
    height: 307px;
    overflow: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    box-shadow: 0px 4px 16px 0px #E6DDF1;
}

.card {
    box-sizing: border-box;
    /* margin: 8px; */
}

.slide-image {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.slide-title {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.slide-content {
    font-size: 1rem;
    /* max-width: 90%; */
    height: 165px;
    line-height: 156%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}


.carousel-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.carousel-navigation button {
    padding: 8px 12px;
    font-size: 18px;
    cursor: pointer;
}

.carousel-navigation button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-dots {
    display: flex;
    gap: 16px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
}

.desktop-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 16px;
    /* padding: 16px; */
    width: 100%;
    box-sizing: border-box;
}

/* .carousel-slide.card {
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 16px 0px #E6DDF1;
    margin-right: 8px;
} */

.carousel-slide.card {
    flex: 1 0 25%;
    /* 4 per slide = 100/4 = 25% */
    box-sizing: border-box;
    padding: 10px;
}


@media (max-width: 900px) {

    .carousel-wrapper {
        width: 96%;
        margin: auto;
        padding: 24px 0px 16px;
    }

    .carousel-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .carousel-slide {
        width: 330px;
        padding: 20px 24px 8px;
    }

    .slide-title {
        font-size: 1.1rem;
    }

    .slide-content {
        font-size: 0.9rem;
        max-width: 100%;
        padding: 0px 22px;
    }

    .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        cursor: pointer;
    }

    .carousel-slide.card {
        background: white;
        /* padding: 12px; */
        border-radius: 8px;
        box-shadow: 0px 4px 16px 0px #E6DDF1;
        /* margin-right: 8px; */
    }
}

@media (min-width: 600px) and (max-width: 900px) {
    .carousel-slide.card {
        margin-right: 8px;
    }
    .carousel-slide {
        width: 270px;
        padding: 20px 24px 8px;
    }

}
body {
    margin: 0;
    font-family: 'Satoshi';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #F4F6FA;
    font-display: swap;
  }
  @font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi.woff2') format('woff2');
    font-display: swap;
  }
  
  code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
      monospace;
  }
  
  p, ul, li {
    line-height: 26px;
    color: rgb(115, 112, 132);
    font-size: 16px;
  }

strong {
  color: #000000
}

a {
  text-decoration: none;
}


  /* SEO table */
  .table {
    width: 100% !important;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 14px;
  }
  
  .table tr:first-child {
    background-color: #333333;
    color: #fff;
    font-weight: bold;
  }

  .table tr:first-child strong {
    color: #fff;
  }
  
  .table th,
  .table td {
    padding: 8px 12px;
    text-align: left;
    vertical-align: top;
  }
  
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6;
  }
  
  .table-bordered {
    border: 1px solid #dee2e6;
  }

    @media (max-width: 768px) {
  
      .table th,
      .table td {
        padding: 4px 6px;
      }

      p, ul, li {
        font-size: 14px;
      }
    }
    
  /* end of SEO */
