.text{
  margin-top: 45px;
  width: 100%;
  min-height: 90vh;
  height: fit-content;
}

.title{
  width: 100%;
  display: flex;
  flex-direction: column;
}

.privacy-policy {
  max-width: 850px;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem 1.5rem;
  line-height: 1.7;
  color: var(--black-soft);
}

.privacy-policy h1 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 0;
}

.privacy-policy h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  line-height: 30px;
}

.privacy-policy p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--gray-dark);
  line-height: 20px;
}

.title p {
  text-align: center;
}

.privacy-policy ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.privacy-policy ul li {
  margin-bottom: 0.5rem;
}

.privacy-policy strong {
  font-weight: 600;
}

.privacy-update {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: var(--gray-medium);
}

/* ! Footer */
.footer-justfix {
  background-color: var(--white-soft);
  color: var(--black-muted);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  padding: 40px 20px 20px;
}

.footer-justfix a {
  color: var(--black-premium);
  text-decoration: none;
  opacity: 0.8;
}

.footer-justfix a:hover {
  opacity: 1;
}

.footer-legal {
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: left;
}

.footer-legal p {
  margin: 8px 0;
}

.footer-sitemap {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 800px;
  margin: 0 auto;
}

.sitemap-column h4 {
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--black-premium);
}

.sitemap-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-column li {
  margin: 1px 0;
}

@media (max-width: 768px) {
  .footer-sitemap {
    flex-direction: column;
    gap: 20px;
  }
}

.developerMiniBanner{
  padding: 2px;
  text-align: center;
  color: var(--white-muted);
  user-select: none;
  width: 100%;height: fit-content;
  position: relative;
  font-size: 13px;
}
.developerMiniBanner p{
  position: relative;z-index: 2;
  width: fit-content;margin: 0 auto;
}
.developerMiniBanner a{
  position: absolute;z-index: 4;
  left: 0;top: 0;
  width: 100%;height: 100%;
}
.developerMiniBanner img{
  position: absolute;z-index: 1;
  height: 100%;width: 100%;left: 0;top: 0;
}