#privacy {
  background-color: #f7f7f8;
  padding: 120px 0;
}
#privacy.bg_white {
  background-color: #fff;
}
#privacy h2 {
  font-size: 42px;
  line-height: 56px;
  font-weight: 600;
  margin-bottom: 32px;
}
#privacy h2 strong {
  font-size: 42px;
  line-height: 56px;
  font-weight: 600;
}
#privacy p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 10px;
}
#privacy a {
  color: #614efa;
  text-decoration: underline;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}
#privacy .items_wrapper {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 32px;
}
#privacy .items_wrapper .separator {
  flex: 0 1 calc(100% - 32px);
  height: 1px;
  background-color: #e7e7ea;
}
#privacy .items_wrapper .item {
  border-radius: 16px;
  flex: 0 0 calc(25% - 32px);
}
#privacy .items_wrapper .item ul {
  padding: 0 15px;
  margin: 0;
}
#privacy .items_wrapper .item .content,
#privacy .items_wrapper .item li {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}
#privacy .items_wrapper .item .icon {
  margin-bottom: 24px;
}
#privacy .items_wrapper .item h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 12px;
}

@media screen and (max-width: 1280px) {
  #privacy {
    padding: 80px 0;
  }
  #privacy .items_wrapper .separator {
    display: none;
  }
  #privacy .items_wrapper .item {
    flex: 0 0 calc(50% - 32px);
  }
  #privacy h2 {
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 32px;
  }
  #privacy h2 strong {
    font-size: 36px;
    line-height: 50px;
  }
}
@media screen and (max-width: 768px) {
  #privacy {
    padding: 60px 0;
  }
  #privacy h2 {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 32px;
  }
  #privacy h2 strong {
    font-size: 26px;
    line-height: 36px;
  }
  #privacy .content {
    font-size: 16px;
    line-height: 30px;
  }
  #privacy .items_wrapper {
    gap: 32px;
  }
  #privacy .items_wrapper .item {
    flex: 0 0 100%;
  }
  #privacy .items_wrapper .item .icon {
    margin-bottom: 16px;
  }
  #privacy .items_wrapper .item .icon img {
    width: 48px;
    height: 48px;
  }
}