.logo-div {
  z-index: 9;
}

section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.8);
  background-blend-mode: lighten;
}


.privacy-policy-container,
.terms-conditions-container,
.refund-policy-container,
.shipping-policy-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  border-radius: 10px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #000000;
  line-height: 1.75;
}

.privacy-policy-container h1,
.terms-conditions-container h1,
.refund-policy-container h1,
.shipping-policy-container h1 {
  font-size: 2rem;
  color: var(--headingColor);
  text-align: center;
  margin-bottom: 10px;
}

.privacy-policy-container h2,
.terms-conditions-container h2,
.refund-policy-container h2,
.shipping-policy-container h2 {
  font-size: 1.3rem;
  margin-top: 30px;
  margin-bottom: 12px;
  color: #000000;
  border-left: 4px solid var(--headingColor);
  padding-left: 12px;
}

.privacy-policy-container p,
.terms-conditions-container p,
.refund-policy-container p,
.shipping-policy-container p {
  margin-bottom: 18px;
  font-size: 1rem;
}

.privacy-policy-container ul,
.terms-conditions-container ul,
.refund-policy-container ul,
.shipping-policy-container ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.privacy-policy-container ul li,
.terms-conditions-container ul li,
.refund-policy-container ul li,
.shipping-policy-container ul li {
  margin-bottom: 10px;
}

.privacy-policy-container a,
.terms-conditions-container a,
.refund-policy-container a,
.shipping-policy-container a {

  color: var(--headingColor);
  text-decoration: none;
  font-weight: 500;
}

.privacy-policy-container a:hover,
.terms-conditions-container a:hover,
.refund-policy-container a:hover,
.shipping-policy-container a:hover {
  text-decoration: underline;
}

.privacy-policy-container i,
.terms-conditions-container i,
.refund-policy-container i,
.shipping-policy-container i {
  margin-right: 6px;
  color: var(--headingColor);
}

@media (max-width: 600px) {

  .privacy-policy-container,
  .terms-conditions-container,
  .refund-policy-container,
  .shipping-policy-container {
    padding: 20px;
    margin-top: 5rem;
  }

  .privacy-policy-container h1,
  .terms-conditions-container h1,
  .refund-policy-container h1,
  .shipping-policy-container h1 {
    font-size: 1.6rem;
  }

  .privacy-policy-container h2,
  .terms-conditions-container h2,
  .refund-policy-container h2,
  .shipping-policy-container h2 {
    font-size: 1.2rem;
  }
}

.content-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 5rem 40px 1.5rem;
  border-radius: 10px;
  animation: slideUp 1s ease-in-out;
}

.content-wrapper h1,
.content-wrapper h2,
.content-wrapper h3 {
  color: var(--headingColor);
  margin-bottom: 20px;
  animation: fadeInDown 0.6s ease forwards;
}

.content-wrapper h1 {
  font-size: 2.5rem;
  text-align: center;
}

.content-wrapper h2 {
  font-size: 2rem;
  margin-top: 40px;
}

.content-wrapper h3 {
  font-size: 1.5rem;
  color: var(--headingColor);
}

.content-wrapper p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  animation: fadeIn 1s ease;
}

.content-wrapper ul {
  list-style-type: none;
  padding-left: 20px;
  margin-bottom: 30px;
}

.content-wrapper ul li {
  margin-bottom: 12px;
  padding: 10px;
  border-left: 4px solid var(--headingColor);
  background-color: #f1faee;
  transition: background-color 0.3s ease, transform 0.3s ease;
  animation: fadeInUp 0.8s ease;
}

.content-wrapper ul li:hover {
  background-color: var(--color5);
  transform: translateX(10px);
}

.content-wrapper strong {
  color: var(--headingColor);
}

.invisible {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .content-wrapper {
    padding: 3rem 20px 1rem;
  }

  .content-wrapper h1 {
    font-size: 1.8rem;
  }

  .content-wrapper h2 {
    font-size: 1.5rem;
  }

  .content-wrapper p,
  .content-wrapper ul li {
    font-size: 1rem;
  }
}

.content-wrapper h1 {
  font-size: 1.5rem;
}

.content-wrapper ul {
  padding-left: 0px;
}

.content-wrapper h2,
.content-wrapper h3 {
  font-size: 1.3rem;
}