* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fcfbfc;
  font-family: "Inter", sans-serif;
}

.container {
  width: 700px;
  margin: auto;
  background: #ffff;
  overflow: hidden;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  text-align: center;
}

.content h1 {
  font-size: 68px;
  font-family: "Alegreya Sans", sans-serif;
  margin-bottom: 15px;
}

.header {
  position: relative;
  height: 70px;
  background: #ffff;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  padding: 20px;
}

.logo span {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  text-decoration: none;
  font-size: 27px;
  line-height: 28px;
  letter-spacing: 0px;
  color: #1e2939;
}

.footer {
  background: white;
  padding: 15px 20px;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer a {
  font-weight: 500;
  color: #000;
  font-size: 18px;
  font-family: Arial, sans-serif;
  line-height: 28px;
  letter-spacing: 0px;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
.privacy-section,
.terms-condition-sec {
  padding: 80px 64px;
}

.privacy-point,
.term-point-list {
  padding-bottom: 40px;
}
.privacy-point h2,
.privacy-point h1,
.term-point-list h2 {
  padding-bottom: 12px;
  font-size: 28px;
  color: #101828;
  font-family: "Inter", sans-serif;
  font-weight: 700;

  line-height: 40px;
  letter-spacing: 0px;
}

.privacy-point p,
.term-point-list p {
  font-family: "Inter", sans-serif;
  color: #4a5565;
  line-height: 25px;
  font-weight: 500;
}
.privacy-point ul li,
.term-point-list ul li,
.term-point-list ol li {
  font-family: "Inter", sans-serif;
  color: #4a5565;
  line-height: 25px;
  font-weight: 500;
}

.privacy-point p strong,
.privacy-point ul li strong {
  color: #000 !important;
}

.term-point-list ul li strong,
.term-point-list ol li strong {
  color: #000 !important;
}

.parent-list {
  list-style: none;
  counter-reset: item;
  padding-left: 30px;
}

.parent-list > li {
  counter-increment: item;
  margin-bottom: 15px;
}

.parent-list > li::before {
  content: var(--section) counter(item) ". ";
  font-weight: bold;
  color: #000 !important;
}

.term-order-list {
  padding-left: 26px;
}

.terms-condition-h1 {
  padding-bottom: 16px;
  font-family: "Inter", sans-serif;
}
.home-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;

  background: #e8d1ff;
  color: #782ed4;
  font-family: Arial, sans-serif;
}
.logo-img{
    max-width: 125px;
}

@media screen and (max-width: 768px) {
  .privacy-section,
  .terms-condition-sec {
    padding: 40px 20px;
  }
  .privacy-point ul {
    padding-left: 15px;
  }
  .term-order-list {
    padding-left: 5px;
  }
  .parent-list {
    padding-left: 10px;
  }
  .content h1 {
    font-size: 32px;
  }

  .content p {
    font-size: 16px;
  }
}
