div {
  box-sizing: border-box;
}

body {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  font-family: "Inter", sans-serif;
  margin: 0;
  background-color: #fff;
  min-height: 100vh;
  height: 100%;
}

.main-container {
  align-items: center;
  flex-direction: column;
  flex: 1 0 auto;
  margin-top: 30px;
  max-width: 1050px;
  width: 100%;
  padding: 0 20px;
}

#pngLogo {
  display: none;
}


.privacy-policy {
  margin-bottom: 1.5em;
}

.privacy-policy h2 {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 20px;
}

.privacy-policy ul {
  list-style: disc;
  margin-left: 1.5em;
  padding-left: 0;
  font-family: Inter;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0%;
}

.privacy-policy li {
  margin: 0.5em 0;
  line-height: 1.4;
}

.simple {
  padding-left: 0;
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}

@media screen and (max-width: 490px) {
  .privacy-policy h2 {
    font-size: 10px;
  }

  .privacy-policy ul {
    font-size: 10px;
  }

  .simple {
    font-size: 10px;
  }

  .title {
    font-size: 20px;
  }
}

.title {
  margin: 0;
  text-align: center;
}

.url {
  margin-top: auto;
  margin-bottom: auto;
  flex: 1;
}

/* Footer Styles */
.site-footer {
  width: 100%;
  background-color: #fff;
  padding: 80px 40px 40px;
  border-top: 1px solid #eaeaea;
  font-family: "Inter", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 60px;
  padding-inline: 50px;
}

.footer-logo-section {
  flex: 0 0 200px;
  margin-bottom: 40px;
}

.footer-logo {
  width: 150px;
  height: auto;
}

.footer-links-section {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
  margin-top: 0;
}

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

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-column ul li a:hover {
  color: #000;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #eaeaea;
  flex-wrap: wrap;
  gap: 20px;
  padding-inline: 50px;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #555;
  cursor: pointer;
}

.globe-icon {
  font-size: 16px;
}

.arrow-down {
  font-size: 10px;
}

.copyright {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.footer-social-icons {
  display: flex;
  gap: 15px;
}

.footer-social-icons a {
  color: #000;
  transition: opacity 0.2s ease;
}

.footer-social-icons a:hover {
  opacity: 0.7;
}

.footer-bottom-left-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.shopify-plus-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 60px 0 60px !important;
  }

  .footer-container {
    padding-inline: 40px;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-logo-section {
    margin-bottom: 30px;
  }

  .footer-links-section {
    gap: 40px;
    justify-content: flex-start;
  }

  .footer-column {
    flex: 0 0 45%;
    margin-bottom: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-inline: 40px;
  }

  .footer-bottom-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

@media (max-width: 490px) {
  .site-footer {
    padding: 40px 0 50px !important;
  }

  .footer-container {
    padding-inline: 20px;
  }

  .footer-logo-section {
    margin-bottom: 0;
    flex: none;
  }

  .footer-links-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .footer-column {
    flex: none;
    width: auto;
    margin-bottom: 0;
  }

  .footer-bottom {
    padding-inline: 20px;
  }

  .footer-social-icons {
    margin-top: 10px;
  }
}