
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
   padding: 15px 0;
  background: rgba(255, 255, 255, 0.95);
  margin-bottom: 20px;
}

#header.header-transparent {
  background-color: transparent;
}

#header.header-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}


#header .header-center h1 {
    text-align: center;
    margin-bottom: 0.5em;
}

#header .logo h1 {
  font-size: 30px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #5777ba;
  text-decoration: none;
}

#header .logo img {
  margin: 0;
  max-height: 60px;
  border-radius: 50px;
}



/* Body Text */
body {
  font-family: "Poppins", sans-serif;
  color: #333;
  background-color: #f9f9f9;
  line-height: 1.6;
  padding: 20px;
}

/* Headings */
h1, h2, h3 {
  color: #0073e6;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  font-weight: 600;
}

/* Links */
a {
  color: #0073e6;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Table of Contents */
.toc {
  background-color: #f1f1f1;
  padding: 15px;
  margin-top: 20px;
  margin-bottom: 20px;
  border-left: 4px solid #0073e6;
}

/* Boxes for Key Sections */
.boxed-section {
  background-color: #E1F5FE;
  border: 1px solid #ddd;
  padding: 15px;
  margin: 20px 0;
  border-radius: 5px;
}

.terms-boxed-section {
  background-color: #000000;
  border: 1px solid #ddd;
  padding: 15px;
  margin: 20px 0;
  border-radius: 5px;
}

.terms-boxed-section  h4 {
  color: #ffffff;
  font-family: "Poppins", sans-serif;

}

.terms-boxed-section  a {
  color: #ffffff;
  font-family: "Poppins", sans-serif;
}




/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #5777ba;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #748ec6;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}