/* Privacy Policy Page Styles */
.privacy {
  padding: 100px 0;
  background-color: var(--white);
}

.privacy .container {
  max-width: 900px;
}

.privacy .sec-heading {
  font-size: var(--fs-48);
  font-weight: var(--fw-600);
  color: var(--gray-900);
  line-height: 1.25;
  letter-spacing: -0.96px;
  text-align: center;
  margin-bottom: 24px;
}

.privacy .page-link {
  text-align: center;
  margin-bottom: 48px;
}

.privacy .page-link a {
  font-size: var(--fs-16);
  font-weight: var(--fw-500);
  color: var(--blue-600);
  text-decoration: none;
  transition: color 0.2s;
}

.privacy .page-link a:hover {
  color: var(--blue-700);
  text-decoration: underline;
}

.privacy .items-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.privacy .items-list .item {
  margin-bottom: 0;
}

.privacy .items-list .item .heading {
  font-size: var(--fs-28);
  font-weight: var(--fw-600);
  color: var(--gray-900);
  line-height: 1.3;
  margin-bottom: 16px;
  margin-top: 0;
}

.privacy .items-list .item .text {
  font-size: var(--fs-16);
  font-weight: var(--fw-400);
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 0;
  margin-top: 0;
}

.privacy .items-list .item .text a {
  color: var(--blue-600);
  text-decoration: underline;
}

.privacy .items-list .item .text a:hover {
  color: var(--blue-700);
}

.privacy .items-list .item .text b {
  font-weight: var(--fw-600);
  color: var(--gray-900);
}

@media screen and (max-width: 1199.98px) {
  .privacy {
    padding: 80px 0;
  }

  .privacy .sec-heading {
    font-size: var(--fs-44);
    margin-bottom: 20px;
  }

  .privacy .page-link {
    margin-bottom: 40px;
  }

  .privacy .items-list {
    gap: 40px;
  }

  .privacy .items-list .item .heading {
    font-size: var(--fs-26);
    margin-bottom: 14px;
  }
}

@media screen and (max-width: 767.98px) {
  .privacy {
    padding: 60px 0 40px;
  }

  .privacy .sec-heading {
    font-size: var(--fs-32);
    letter-spacing: -0.64px;
    margin-bottom: 16px;
  }

  .privacy .page-link {
    margin-bottom: 32px;
  }

  .privacy .items-list {
    gap: 32px;
  }

  .privacy .items-list .item .heading {
    font-size: var(--fs-22);
    margin-bottom: 12px;
  }

  .privacy .items-list .item .text {
    font-size: var(--fs-15);
    line-height: 1.7;
  }
}

