/* ============================================================
   privacy.css
   Shared styles for privacy.blade.php and terms_condition.blade.php
   ============================================================ */

.privacy-wrapper {
  background: #f9fbff;
  margin-top: 20px;
}

.privacy-container {
  max-width: auto;
  margin: 10px 40px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  padding: 32px 24px;
  border: 1px solid #e4e7ec;
}

.privacy-section h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #083a9a;
  font-weight: 700;
}

.privacy-section h2 strong {
  color: #000000 !important;
}

.privacy-section p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 10px;
}

/* Lists inside sections */
.privacy-section ul {
  margin: 8px 0 6px 18px;
  padding-left: 6px;
}

.privacy-section li {
  font-size: 0.96rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 6px;
}

/* Highlighted text */
.privacy-section strong {
  font-weight: 600;
}

.privacy-section p strong {
  font-weight: 600;
}

/* ===========================
   RESPONSIVE ADJUSTMENTS
   =========================== */

@media (max-width: 768px) {
  .domestic-hero.privacy-hero {
    padding: 60px 16px 70px;
  }

  .domestic-hero.privacy-hero h1 {
    font-size: 2rem;
  }

  .privacy-container {
    margin-top: -40px;
    padding: 24px 18px;
    border-radius: 14px;
  }

  .privacy-section h2 {
    font-size: 1.15rem;
  }
}

@media (max-width: 480px) {
  .domestic-hero.privacy-hero h1 {
    font-size: 1.8rem;
  }

  .domestic-hero.privacy-hero p {
    font-size: 0.95rem;
  }

  .privacy-section p,
  .privacy-section li {
    font-size: 0.94rem;
  }
}
