body {
    overflow-x: hidden;
}
.row h2 {
    color: #fad565;
    text-align: center;
    font-size: 30px;
}
.row p{
	text-align: center;
    padding-bottom: 25px;
    color:white;
    font-size: large;
    margin-top: 10px;
}
.row{
    margin-top: 40px;
}
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.breadcrumb {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 30px;
}

.breadcrumb a {
  color: #aaa;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.policy {
    background:transparent !important;
    color: #fff;
    padding: 48px 24px 48px 24px;
    max-width: 1500px;
    margin: 40px auto 32px auto;
    border-radius: 16px;
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.18);
    font-family: 'Poppins', Arial, sans-serif;
}

.policy h2, .policy h3, .policy h4, .policy h5, .policy h6 {
    color: #fad565;
    margin-top: 32px;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.policy h2 { font-size: 1.6em; }
.policy h3 { font-size: 1.3em; }
.policy h4 { font-size: 1.1em; }
.policy h5, .policy h6 { font-size: 1em; }

.policy p {
    color: #eee;
    font-size: 1.05em;
    line-height: 1.8;
    margin-bottom: 18px;
    margin-top: 0;
}

.navbars {
    width: 100%; /* Ensure the navbar spans the full width */
    overflow: hidden;
    padding: 15px;
    color: white;
    margin-top: 50px;
    position: relative;
    background-color: black;
    overflow-x: hidden;
}

.navbars::before,
.navbars::after {
    content: '';
    display: block;
    height: 2px; /* Thickness of the line */
    background-color:#fad565; /* Color of the line */
    width: 100%;
    position: absolute;
    left: 0;
}

.navbars::before {
    top: 0; /* Line above the navbar */
}

.navbars::after {
    bottom: 0; /* Line below the navbar */
}

.horizontal-scroll {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 15s linear infinite;
    animation: scroll 15s linear infinite;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    white-space: nowrap;
}

li {
    display: inline-block;
    margin-right: 10px;
    font-size: 22px;
}

a {
    text-decoration: none;
    color: white;
}

.divider {
    color: white;
    font-size: 24px;
    margin-right: 10px;
}
@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
@media (max-width: 900px) {
  .container {
    max-width: 100% !important;
    padding: 24px 4vw !important;
  }
  .policy h2 {
    font-size: 1.1rem !important;
    margin-top: 20px !important;
    margin-bottom: 8px !important;
  }
  .policy p {
    font-size: 1em !important;
    margin-bottom: 16px !important;
  }
}

@media (max-width: 600px) {
  html, body {
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow-x: hidden !important;
    background: #000 !important;
    box-sizing: border-box !important;
  }
  .container {
    max-width: 100vw !important;
    width: 100vw !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 12px 5vw !important; /* Increased side gap */
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
  .row h2 {
    font-size: 1.3em !important;
    padding: 0 !important;
    margin: 0 0 8px 0 !important;
    text-align: center !important;
    word-break: break-word !important;
  }
  .row p {
    font-size: 1em !important;
    padding: 0 0 12px 0 !important;
    margin: 0 !important;
    text-align: center !important;
    word-break: break-word !important;
  }
  .policy {
    padding: 24px 8px;
    border-radius: 8px;
  }
  .policy h2, .policy h3, .policy h4, .policy h5, .policy h6 {
    margin-top: 24px;
    margin-bottom: 8px;
  }
  .policy h2 {
    font-size: 1em !important;
    margin-top: 16px !important;
    margin-bottom: 6px !important;
  }
  .policy p {
    font-size: 0.95em !important;
    margin-bottom: 12px !important;
  }
  .breadcrumb {
    font-size: 0.85rem !important;
    margin-bottom: 16px !important;
    padding: 0 2vw !important;
    text-align: left !important;
    word-break: break-word !important;
  }
  .navbars {
    padding: 10px 0 !important;
    font-size: 1em !important;
    margin-top: 24px !important;
  }
  .horizontal-scroll {
    font-size: 1em !important;
    padding: 0 2vw !important;
  }
  li {
    font-size: 1em !important;
    margin-right: 6px !important;
  }
  .divider {
    font-size: 1.2em !important;
    margin-right: 6px !important;
  }
  .policy p, .policy h2, .row h2, .row p {
    max-width: 100% !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
  }
}




