* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
#privacy-main-container {
  height: fit-content;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#privacy-heading-container {
  height: fit-content;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #121216;
  padding: 50px 0;
}
#privacy-heading {
  display: flex;
  justify-content: end;
  flex-direction: column;
  height: fit-content;
  color: #0077ff;
  width: 50%;
}
#privacy-heading span,
#privacy-heading h2 {
  color: white;
}
#privacy-second-main-container {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  background-color: whitesmoke;
}
#privacy-bottom-container {
  height: fit-content;
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 25px;
  padding: 20px 0;
  padding-top: 0;
  text-align: center;
}
#privacy-bottom-container h5 {
  color: gray;
  text-align: left;
  width: 100%;
  margin-top: 40px;
}
#privacy-bottom-container p {
  text-align: left;
  color: black;
}
#privacy-bottom-container p span {
  color: #0077ff;
}
#privacy-bottom-container h2 {
  color: #0077ff;
  text-align: left;
}
#privacy-bottom-container span {
  font-weight: 500;
  color: black;
}
@media (max-width: 600px) {
  #privacy-upper-container {
    height: 300px;
    width: 80%;
  }
}
