/* ============================================================
   REHZON GRID SYSTEMS — Privacy Page Styles
   Extends css/style.css
   ============================================================ */

/* ---- Privacy Hero ---------------------------------------- */
.privacy-hero {
  background-color: #0D1B2A;
  padding: 130px 48px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Dot-grid texture — matches hero */
.privacy-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44'%3E%3Ccircle cx='2' cy='2' r='1.2' fill='rgba(26%2C144%2C112%2C0.10)'/%3E%3C/svg%3E");
  background-size: 44px 44px;
  z-index: 1;
  pointer-events: none;
}

.privacy-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.privacy-title {
  color: #FFFFFF;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.privacy-meta {
  color: rgba(255,255,255,0.42);
  font-size: 0.88rem;
  line-height: 1.8;
  letter-spacing: 0.01em;
  margin: 0;
}

/* ---- Policy Body Container ------------------------------- */
.privacy-body {
  padding-top: 72px !important;
  padding-bottom: 80px !important;
}

.privacy-inner {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

/* ---- Policy Intro ---------------------------------------- */
.policy-intro {
  margin-bottom: 52px;
  padding-bottom: 40px;
  border-bottom: 1px solid #E2E8EF;
}

.policy-intro p {
  color: #374151;
  font-size: 1.04rem;
  line-height: 1.9;
  text-align: left;
}

/* ---- Policy Sections ------------------------------------- */
.policy-section {
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid #E2E8EF;
  text-align: left;
}

.policy-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  padding-left: 14px;
  border-left: 3px solid #1A9070;
  line-height: 1.3;
}

.policy-subheading {
  font-size: 0.92rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 22px 0 10px;
}

.policy-section p {
  color: #374151;
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 1rem;
  text-align: left;
}

.policy-section p strong {
  color: #111827;
  font-weight: 600;
}

/* ---- Policy List ----------------------------------------- */
.policy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.policy-list li {
  font-size: 0.97rem;
  color: #374151;
  line-height: 1.65;
  padding-left: 22px;
  position: relative;
  text-align: left;
}

.policy-list li::before {
  content: "›";
  color: #1A9070;
  position: absolute;
  left: 4px;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.4;
}

.policy-list li strong {
  color: #111827;
  font-weight: 600;
}

/* ---- Policy Links ---------------------------------------- */
.policy-section a {
  color: #1A9070;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(26,144,112,0.3);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.policy-section a:hover {
  color: #15B88E;
  border-color: rgba(21,184,142,0.55);
  text-decoration: none;
}

/* ---- Contact Block --------------------------------------- */
.policy-contact-block {
  margin-top: 16px;
  padding: 24px 28px;
  background-color: rgba(26, 144, 112, 0.05);
  border: 1px solid rgba(26, 144, 112, 0.2);
  border-radius: 8px;
  display: inline-block;
  text-align: left;
  min-width: 260px;
}

.policy-contact-block p {
  margin-bottom: 4px !important;
  font-size: 0.95rem;
  color: #374151;
}

.policy-contact-block p:first-child {
  color: #111827;
}

.policy-email {
  color: #1A9070 !important;
  font-weight: 600;
  border-bottom: 1px solid rgba(26,144,112,0.35) !important;
}

.policy-email:hover {
  color: #15B88E !important;
}

/* ---- Back Button ----------------------------------------- */
.privacy-back {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid #E2E8EF;
  display: flex;
  justify-content: center;
}

/* ---- Responsive ------------------------------------------ */
@media (max-width: 960px) {
  .privacy-hero {
    padding: 120px 36px 64px;
  }

  .privacy-body {
    padding-left: 36px !important;
    padding-right: 36px !important;
  }
}

@media (max-width: 640px) {
  .privacy-hero {
    padding: 108px 20px 56px;
  }

  .privacy-body {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .policy-contact-block {
    width: 100%;
  }

  .privacy-back .btn {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
}
