.hero-privacy {
  background-image: url("../img/faq-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;

  position: relative;
  margin-bottom: 0;
  padding: 60px;
  isolation: isolate;
}

.hero-privacy::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: #120b32;
  opacity: 0.5;
}

.hero-privacy>h2 {
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
}

@keyframes pushUp {
  from {
    transform: translateY(80px);
    /* Initial position pushed down */
  }

  to {
    transform: translateY(0);
    /* Final position at normal height */
  }
}

.hero-privacy>h1 {
  color: #fff;
  font-family: "KorolevBold", Sans-serif;
  font-size: 55px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3em;
  letter-spacing: 0;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.76);
  text-align: center;
  animation: pushUp 1.5s ease-out;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.content-wrapper>* {
  width: 85%;
  /* Adjust the width as needed */
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-block: 3rem;
  margin-inline: 7rem;
  gap: 2rem;
}

.privacy {
  display: flex;
  flex-direction: column;
}

.privacy-content {
  margin-inline: 2rem;
}

.text-content-title {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.2em;
  text-transform: none;
  font-family: "RobotoCondensed", sans-serif;
  word-wrap: break-word;
  letter-spacing: 0px;
  color: #1b325f;
}

.text-content {
  color: #1b325f;
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0px;
}

.text-content-ul {
  padding-left: 50px;
}

@media (width <=1200px) {
  .content-wrapper {
    align-items: flex-start;
    margin-inline: 1rem;
  }

  .content-wrapper>* {
    width: 100%;
    /* Adjust the width as needed */
  }

  .container {
    margin-inline: 0;
    padding: 0;
  }
}
