/* ========================================
Privacy Page
======================================== */

.privacy-section {
  padding-top: 72px;
}

.privacy-intro-card {
  margin-bottom: 30px;
  padding: 30px 32px;
  border: 1px solid #dfeeed;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfd 100%);
  box-shadow: 0 14px 34px rgba(44, 122, 123, 0.06);
}

.privacy-updated {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef8f7;
  color: #2c7a7b;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.privacy-blocks {
  display: grid;
  gap: 22px;
}

.privacy-block {
  padding: 30px 32px;
  border: 1px solid #dfeeed;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(44, 122, 123, 0.05);
}

.privacy-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.privacy-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  border-radius: 16px;
  background: #eef8f7;
  color: #2c7a7b;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.privacy-block h2 {
  margin: 0;
  color: #243434;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.5;
}

.privacy-page .page-paragraph {
  margin-bottom: 0;
  color: #526262;
  line-height: 1.95;
}

.privacy-list,
.privacy-contact-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-list li,
.privacy-contact-list li {
  position: relative;
  padding-left: 22px;
  color: #526262;
  line-height: 1.9;
}

.privacy-list li::before,
.privacy-contact-list li::before {
  content: "";
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7fc8c2;
  transform: translateY(-50%);
}

.privacy-contact-box {
  display: grid;
  gap: 14px;
  padding: 22px 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f7fcfb 0%, #eef8f7 100%);
  border: 1px solid rgba(44, 122, 123, 0.08);
}

.privacy-related-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

@media screen and (max-width: 767px) {
  .privacy-section {
    padding-top: 56px;
  }

  .privacy-intro-card,
  .privacy-block {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .privacy-head {
    align-items: flex-start;
    gap: 12px;
  }

  .privacy-number {
    min-width: 42px;
    min-height: 42px;
    border-radius: 14px;
    font-size: 0.88rem;
  }

  .privacy-contact-box {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .privacy-related-links {
    flex-direction: column;
    align-items: stretch;
  }

  .privacy-related-links .btn,
  .privacy-related-links .btn-outline {
    width: 100%;
    justify-content: center;
  }
}
