/*=================================================
  KR Info Solutions — Privacy & Policy page styles
  (privacy-policy.html)

  Loaded AFTER css/style.css, which supplies shared
  tokens, reset, header/nav, footer, buttons, .sec-title.
  This file holds only what is specific to this page.
  Prefix: .pp-

  The live site's /privacy-policy/ is an empty shell —
  hero and breadcrumb only, no body copy. The policy
  text here was written against what this site actually
  does (two mail-only forms, no analytics, Google Fonts
  + Maps + YouTube embeds), so keep it in step with the
  forms in contact.html / career-information.html.
=================================================*/

/* ---------- Breadcrumb hero (same pattern as the other inner pages) ---------- */
.pp-hero {
  position: relative;
  background-color: var(--title-color);
  background-image: url("../assets/images/bg2.png");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
  display: flex;
  align-items: center;
  text-align: center;
}
.pp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.pp-hero .container { position: relative; z-index: 2; }
.pp-hero_title {
  font-family: var(--body-font);
  font-size: 60px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--white-color);
  margin: 0;
}
.pp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-family: var(--body-font);
  font-size: 18px;
  margin-top: 18px;
}
.pp-breadcrumb li { color: var(--white-color); }
.pp-breadcrumb li:not(:last-child)::after {
  content: "\203A";
  margin-left: 10px;
  color: var(--accent-orange);
}
.pp-breadcrumb li a { color: var(--white-color); }
.pp-breadcrumb li a:hover { color: var(--theme-color); }

/* ---------- Policy body ---------- */
/* One readable column. 860px keeps the measure near 75 characters at the
   16px body size, which is where long-form legal copy stops being a wall. */
.pp-sec { padding: var(--inner-section-space) 0; }
.pp-body {
  max-width: 860px;
  margin: 0 auto;
}

/* Effective-date line above the first section. */
.pp-updated {
  font-family: var(--body-font);
  font-size: 15px;
  color: var(--body-color);
  padding-bottom: 18px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
}
.pp-updated strong { color: var(--title-color); font-weight: 600; }

/* Intro paragraph sits a little larger than the section copy. */
.pp-intro {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.pp-block { margin-bottom: 40px; }
.pp-block:last-child { margin-bottom: 0; }
.pp-block_title {
  font-family: var(--title-font);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--title-color);
  margin: 0 0 16px 0;
}
/* Sub-heading inside a block (e.g. the two kinds of data we collect). */
.pp-sub_title {
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 600;
  color: var(--title-color);
  margin: 26px 0 12px 0;
}
.pp-block p {
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 16px 0;
}
.pp-block p:last-child { margin-bottom: 0; }
.pp-block a { color: var(--theme-color); }
.pp-block a:hover { color: var(--accent-orange); }

/* Bulleted lists. The theme resets list-style, so the marker is drawn
   with ::before to keep it on the accent colour. */
.pp-list { margin: 0 0 16px 0; }
.pp-list li {
  position: relative;
  padding-left: 26px;
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.75;
  color: var(--body-color);
  margin-bottom: 10px;
}
.pp-list li:last-child { margin-bottom: 0; }
.pp-list li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent-orange);
}
.pp-list li strong { color: var(--title-color); font-weight: 600; }

/* Closing contact panel — same soft card the product grid uses. */
.pp-contact-card {
  background-color: #eff1f9;
  border-radius: 20px;
  padding: 36px 40px;
}
.pp-contact-card .pp-block_title { margin-bottom: 12px; }
.pp-contact-list { margin-top: 18px; }
.pp-contact-list li {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.75;
  color: var(--body-color);
  margin-bottom: 8px;
}
.pp-contact-list li:last-child { margin-bottom: 0; }
.pp-contact-list li strong {
  color: var(--title-color);
  font-weight: 600;
  margin-right: 6px;
}
.pp-contact-list a { color: var(--theme-color); }
.pp-contact-list a:hover { color: var(--accent-orange); }

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  /* breathing room when the container goes full-width */
  .pp-body { padding: 0 40px; }
}
@media (max-width: 991px) {
  .pp-hero { min-height: 300px; }
  .pp-hero_title { font-size: 44px; }
  .pp-body { padding: 0 30px; }
  .pp-block_title { font-size: 22px; }
}
@media (max-width: 767px) {
  .pp-hero { min-height: 280px; }
  .pp-hero_title { font-size: 40px; }
  .pp-breadcrumb li { font-size: 15px; }
  .pp-intro { font-size: 17px; }
  .pp-block_title { font-size: 20px; }
  .pp-contact-card { padding: 28px 24px; }
}
