body {
  background-color: #f5f5f5;
}
:root {
  --template-color-0: #000;
}
header {
  background-color: transparent;
}

header ul {
  list-style-type: none;
  margin: 0;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
}

header ul li a {
  text-decoration: none;
  color: #333;
  font-size: 1.2em;
  transition: ease-in-out 0.3s all;
  font-weight: bold;
  display: flex;
  align-items: center;
  height: 30px;
}
header ul li a svg {
  margin-top: 2px;
}
header ul li a:hover {
  text-decoration: none;
  color: #222;
  transform: translateX(-5px);
}

.privacy_section {
  display: flex;
  flex-direction: column;
  padding-bottom: 4rem;
  padding: 20px;
}

.privacy_section h1 {
  font-size: 2em;
  margin: 0;
}
.privacy-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.privacy-info {
  display: flex;
  flex-direction: column;
  justify-content: start;
  text-align: left;
}
.heading_container {
  display: flex;
  justify-content: center;
}
.privacy-info h5 {
  width: fit-content;
  position: relative;
  font-weight: bold;
  padding-bottom: 5px;
}

main {
  margin: 0 auto;
  width: 80%;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

footer {
  background-color: transparent;
  display: flex;
  padding: 14px 96px;
}
