/* Privacy page specific styles */
a {
  text-decoration: none;
  color: inherit;
}
.privacy-page {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0px;
  position: relative;
}
.article {
  max-width: 1240px;
}
.container-privacy .title {
  margin: 0 0 20px 0;
}
.container-privacy p {
  font-size: 16px;
  line-height: 21px;
  color: var(--black);
}
.container-privacy ul {
  padding-left: 25px;
}
.backline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 60px;
}
.circle-blue {
  width: 21px;
  height: 21px;
  display: inline-block;
  vertical-align: top;
  border: 1px solid var(--global--color-cristal-blue);
  border-radius: 100%;
  position: relative;
}

.circle-blue:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: scale(0.263);
  background-color: var(--global--color-cristal-blue);
  border-radius: 100%;
  animation-duration: 0.8s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
  will-change: transform;
}

.backline:hover .circle-blue:before {
  animation-name: rippleWith;
}

.circle-blue:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 100%;
  opacity: 0;
  transform: scale(0.6);
  animation-duration: 0.8s;
  animation-delay: 0.4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
  will-change: transform, opacity;
  border: 4px solid var(--global--color-cristal-blue);
}

.backline:hover .circle-blue:after {
  animation-name: ripple;
}
.placeholder {
  background: #fff;
  border: 1px solid var(--light-blue);
  border-radius: 12px;
  padding: 48px;
  text-align: center;
}
.back-link-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--global--color-cristal-blue);
  position: relative;
}

.back-link-privacy:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  z-index: -1;
}

.back-link-privacy:hover:before {
  width: 100%;
}

/* Background Pattern Element */
.background-pattern {
  position: absolute;
  bottom: -700px;
  right: 0;
  width: 970px;
  height: 1000px;
  background: url('../images/privacy-bg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: -1;
  pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 1440px) {
  .background-pattern {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .background-pattern {
    display: none;
  }
  .privacy-page{
    padding: 40px 20px 0px 20px
  }
  .container-privacy .h2{
    font-family: Inter;
    font-weight: 400;
    font-size: 21px;
    line-height: 26px;
    letter-spacing: 0;
    vertical-align: middle;
    margin-bottom: 20px;
  }
  .backline{
    justify-content: center;
  }
  .container-privacy .title {
    margin-top: 40px !important;
  }
  .container-privacy ul {
    padding-left: 20px;
  }
}

@media( min-width: 768px) {
  .privacy-page{
    padding: 0px 40px 0px 40px
  }
}
