@font-face {
  font-family: "Inter";
  src: url("../files/fonts/Inter/Inter-VariableFont_opsz\,wght.ttf")
    format("truetype");
  font-weight: 100 900;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.3;
  font-size: 18px;
  scroll-behavior: smooth;
}

span {
  line-height: 1.4;
}

a {
  text-decoration: none;
  color: inherit;
  font-size: 15px;
}

/* <!-- header section --> */

header {
  /* background: #f1f2f6; */
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #eaeaea;
}

nav {
  width: 80%;
  max-width: 1200px;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  color: #1c64f2;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 600;
}

.logo a img {
  height: 35px;
  background: #f1f2f6;
}

.buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn a {
  padding: 7px 10px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-mobile a {
  border: 1px solid #eaeaea;
  color: #0f2336;
}

.btn-web a {
  background: #1c64f2;
  color: #fff;
}

/* <!-- main content --> */

main {
  display: flex;
  justify-content: center;
  padding: 80px 0;
}

.privacySection {
  width: 80%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.privacyHeaders {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.privacyHeader {
  font-size: 32px;
  font-weight: 700;
  color: #0f2336;
}

.privacySubHeader,
.privacyText {
  color: #30363f;
  line-height: 1.6;
}

.privacyContent {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.privacyBox {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.boxHeader {
  font-size: 24px;
  font-weight: 600;
  color: #0f2336;
}

.boxDetails {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.boxDetails p {
  color: #30363f;
  line-height: 1.6;
}

.boxDetails ul {
  padding: 0 30px;
  color: #30363f;
}

.boxDetails ul li {
  line-height: 2;
}

.boxDetails p a {
  color: #1c64f2;
  font-size: 18px;
}

/* footer */

footer {
  display: flex;
  justify-content: center;
  border-top: 1px solid #eaeaea;
  padding: 10px 0;
}

.footer {
  width: 80%;
  color: #0f2336;
  text-align: center;
  font-size: 14px;
}

/* responsive */

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  
  nav {
    width: 90%;
  }

  .logo a {
    font-size: 24px;
  }

  .btn-web {
    display: none;
  }

  .btn-mobile a {
    background: #1c64f2;
    color: #fff;
    border: none;
  }

  main {
    padding: 30px 0 80px;
  }

  .privacySection {
    width: 90%;
    padding: 0 10px;
  }
}
