@font-face {
  font-family: "Baloo Tamma 2";
  src: url(../fonts/BalooTamma2-VariableFont_wght.ttf);
  font-display: swap;
}
:root {
  --primary: #f9a724;
  --secondary: #151533;
  --bg-1: #f9f9f9;
  --bg-2: #0065b5;
  --bg-light: #f9a7244f;
}
body {
  color: #111;
  font-family: "Baloo Tamma 2", sans-serif;
  line-height: 1.7;
  font-weight: 400;
  padding: 0px;
  margin: 0px;
  overflow-x: hidden;
  font-size: 15px;
  word-break: break-word;
}
a {
  color: #111;
  outline: 0px none;
  text-decoration: none;
}
a:hover,
a:focus {
  outline: 0px none;
  text-decoration: none;
}
a:active,
a:hover,
a:focus {
  color: inherit;
}
img {
  border-style: none;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Baloo Tamma 2", sans-serif;
  line-height: 1.2;
  color: #111;
  font-weight: bold;
}
b {
  color: #111;
}
p, li {
  font-size: 16px;
  line-height: 1.4;
}
h1 { font-size: 32px; }
h2 { font-size: 24px; }
.row { row-gap: 16px; }

#header-custom {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 10;
  transition: 0.3s;
}
#header-custom .row .col-12 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px .75rem;
  border-bottom: 2px solid #f9a7244f;
}
#header-custom .logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text {
  font-size: 1.4rem;
  font-weight: bold;
  color: #111;
}
.page-content {
  width: 100%;
  padding: 130px 0 50px;
}
.page-content .container {
  display: flex;
  gap: 30px;
  position: relative;
}
.pre-page {
  width: 70%;
}
.sidebar {
  width: 30%;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}
.pre-page img, .sidebar img {
  display: block;
  border-radius: 10px;
}
.pre-page h1 {
  margin-top: 0;
}
.comment {
  background-color: var(--bg-light);
  padding: 16px;
  border-radius: 10px;
  border-left: 2px solid var(--primary);
  margin-bottom: 0;
}
.comment .italic {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
}
.bg-box {
  background-color: var(--bg-1);
  border-radius: 10px;
}
.how-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
}
.how-box h3 {
  font-size: 18px;
  margin-bottom: 0;
}
.number {
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  padding-top: 3px;
  border: 2px solid var(--primary);
  flex-shrink: 0;
  border-radius: 50%;
}
.offer-box {
  padding: 30px 16px;
  border: 2px solid var(--primary);
  border-radius: 10px;
  text-align: center;
  background-color: #f6fcff;
  margin-top: 30px;
}
.theme-btn {
  background-color: var(--primary);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  font-size: 20px;
  border-radius: 30px;
  padding: 8px 20px 6px;
  transition: 0.3s;
  outline: none;
  border: none;
  cursor: pointer;
}
.theme-btn:hover {
  background-color: var(--secondary);
  color: #fff;
}
.sidebar {
  padding: 20px;
  border: 2px solid #1966d228;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.sidebar h4 {
  font-size: 20px;
  text-align: center;
}
.sidebar ul {
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
  text-align: center;
}
.contact-box {
  padding: 40px 0 0;
}
.custom-input {
  width: 100%;
  padding: 8px 16px;
  margin-bottom: 16px;
  border: 1px solid var(--bg-light);
  outline: none !important;
  transition: 0.3s;
  border-radius: 10px;
  box-shadow: none;
  background-color: #fff;
}
.custom-input:focus {
  border-color: var(--primary);
}
#contact .theme-btn {
  padding: 10px 36px 8px;
}
footer {
  background-color: #111;
  padding: 50px 0 30px;
}
footer p, footer li {
  color: white;
  margin-bottom: 10px;
  font-size: 16px;
}
footer h5 {
  color: white;
  margin-bottom: 16px;
}
footer ul {
  list-style-type: none;
  padding-left: 0;
}
footer a {
  color: var(--primary);
  transition: 0.3s;
}
footer a:hover {
  color: #fff;
}
.copyright {
  display: flex;
  align-items: center;
  padding: 30px 16px 0;
  text-align: center;
  justify-content: space-between;
}
.copyright p {
  margin-bottom: 0;
}
@media screen and (max-width:991.98px) {
  h1 { font-size: 28px; }
  h2 { font-size: 20px; }
}
@media screen and (max-width:767.98px) {
  .page-content .container {
    flex-direction: column;
  }
  .pre-page, .sidebar {
    width: 100%;
  }
  .sidebar {
    position: relative;
    top: 0;
  }
  #header-custom .row .col-12 {
    flex-direction: column;
    row-gap: 10px;
  }
  #header-custom p {
    text-align: center;
  }
}
@media screen and (max-width:575.98px) {
  .copyright {
    flex-direction: column;
    gap: 10px;
  }
  .page-content {
    padding: 160px 0 50px;
  }
}
.docs, .legal-content {
  word-break: break-word;
  padding: 140px 0 80px;
}
.docs h1 {
  text-align: center;
  margin-bottom: 20px;
}
.docs h2 {
  margin-bottom: 10px;
  font-size: 32px;
}
.docs h3 {
  margin-bottom: 10px;
  font-size: 26px;
}
.docs li, .docs p {
  color: inherit;
  line-height: 1.6;
}
.docs a {
  color: var(--primary);
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 140px 20px 60px;
}
.legal-content h1 { font-size: 2rem; margin-bottom: 1rem; }
.legal-content h2 { font-size: 1.8rem; margin: 1.5rem 0 1rem; }
.legal-content h3 { font-size: 1.4rem; margin: 1.2rem 0 0.8rem; }
.legal-content p, .legal-content li { font-size: 1rem; line-height: 1.6; color: #333; }
.legal-content ul { margin: 1rem 0; padding-left: 1.5rem; }
.thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 200px 0 150px;
  background: linear-gradient(135deg, #f5f7ff 0%, #e9eef5 100%);
}
.thanks .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
  background: white;
  border-radius: 32px;
  padding: 40px 30px;
  box-shadow: 0 20px 35px -10px rgba(0,0,0,0.1);
  max-width: 600px;
  text-align: center;
}
.thanks img {
  width: 80px;
  height: auto;
}
.thanks p {
  font-size: 1.2rem;
  line-height: 1.5;
}
.thanks-text {
  font-weight: bold;
  margin-top: 10px;
}