@charset "UTF-8";

/* ========================================
   Privacy Policy Page
   ======================================== */
.privacy-policy {
  padding-top: 160px;
  padding-bottom: 100px;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.privacy-policy__title {
  font-size: 32px;
  font-weight: 700;
  color: #13b5b1;
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 20px;
  border-bottom: 3px solid #13b5b1;
}

.privacy-policy__body {
  max-width: 900px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.9;
  color: #333;
}

.privacy-policy__operator {
  background: #f5f5f8;
  border-left: 4px solid #13b5b1;
  padding: 25px 30px;
  margin-bottom: 40px;
}

.privacy-policy__operator h3 {
  font-size: 16px;
  font-weight: 700;
  color: #13b5b1;
  margin-bottom: 10px;
}

.privacy-policy__operator p {
  font-size: 15px;
  line-height: 2;
}

.privacy-policy__lead {
  margin-bottom: 50px;
}

.privacy-policy__section {
  margin-bottom: 45px;
}

.privacy-policy__section > p {
  margin-top: 10px;
}

.privacy-policy__section-title {
  font-size: 18px;
  font-weight: 700;
  color: #13b5b1;
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.privacy-policy__list {
  list-style: none;
  counter-reset: list-counter;
  padding-left: 0;
}

.privacy-policy__list > li {
  counter-increment: list-counter;
  padding-left: 2.5em;
  position: relative;
  margin-bottom: 15px;
}

.privacy-policy__list > li::before {
  content: counter(list-counter) ".";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #13b5b1;
}

.privacy-policy__dl {
  margin-top: 15px;
  margin-bottom: 10px;
}

.privacy-policy__dl dt {
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 5px;
}

.privacy-policy__dl dd {
  padding-left: 1em;
}

.privacy-policy__dl dd p {
  margin-bottom: 3px;
}

.privacy-policy__sublist {
  list-style: none;
  margin-top: 12px;
  padding-left: 0;
}

.privacy-policy__sublist > li {
  padding-left: 1em;
  margin-bottom: 5px;
}

.privacy-policy__contact {
  background: #f5f5f8;
  padding: 25px 30px;
  margin-top: 20px;
  border-radius: 4px;
}

.privacy-policy__contact p {
  margin-bottom: 5px;
}

.privacy-policy__revision {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #ddd;
  text-align: right;
}

.privacy-policy__revision p {
  margin-bottom: 5px;
}

.privacy-policy__signature {
  margin-top: 20px;
  font-weight: 700;
}

/* Privacy Policy - Header always visible */
.privacy-policy-page #header {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

/* Footer link spacing for multiple links */
#footer .footer-flex .conts .link {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
}

/* CvArea privacy link */
.cv-privacy-link {
  text-align: center;
  margin-top: 20px;
}

.cv-privacy-link a {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-decoration: underline;
  opacity: 0.7;
}

.cv-privacy-link a:hover {
  opacity: 1;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .privacy-policy {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .privacy-policy__title {
    font-size: 22px;
    margin-bottom: 35px;
    padding-bottom: 15px;
  }

  .privacy-policy__body {
    font-size: 14px;
    line-height: 1.8;
    padding: 0 10px;
  }

  .privacy-policy__operator {
    padding: 20px;
    margin-bottom: 30px;
  }

  .privacy-policy__operator h3 {
    font-size: 15px;
  }

  .privacy-policy__operator p {
    font-size: 14px;
  }

  .privacy-policy__lead {
    margin-bottom: 35px;
  }

  .privacy-policy__section {
    margin-bottom: 35px;
  }

  .privacy-policy__section-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .privacy-policy__list > li {
    padding-left: 2em;
  }

  .privacy-policy__contact {
    padding: 20px;
  }

  .privacy-policy__revision {
    margin-top: 40px;
  }
}