/* ==========================================================================
   MAHA POLICE BHARTI - PRIVACY POLICY STYLESHEET
   ========================================================================== */

:root {
  --primary-navy: #0b1f3a;
  --police-blue: #1d4ed8;
  --accent-gold: #f59e0b;
  --accent-orange: #ea580c;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --bg-light: #f8fafc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background-color: #f8fafc;
  line-height: 1.7;
}

.container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.privacy-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.privacy-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.privacy-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.privacy-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.privacy-brand span {
  font-weight: 800;
  color: var(--primary-navy);
  font-size: 1.05rem;
}

.back-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--police-blue);
  background: rgba(37, 99, 235, 0.08);
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  transition: background 0.2s;
}

.back-home-btn:hover {
  background: rgba(37, 99, 235, 0.15);
}

/* Document Container */
.privacy-doc-wrap {
  padding: 2.5rem 0 4rem 0;
}

.privacy-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.doc-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--police-blue);
  background: rgba(37, 99, 235, 0.08);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.doc-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.25rem;
}

.doc-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Callout Box */
.notice-box {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}

.notice-box h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #92400e;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.notice-box p {
  font-size: 0.9rem;
  color: #78350f;
  margin-bottom: 0.6rem;
  line-height: 1.6;
}

.notice-box p:last-child {
  margin-bottom: 0;
}

/* Content Sections */
.policy-section {
  margin-bottom: 2.25rem;
}

.policy-section h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.85rem;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 0.4rem;
}

.policy-section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 1rem 0 0.5rem 0;
}

.policy-section p {
  font-size: 0.92rem;
  color: #334155;
  margin-bottom: 0.85rem;
}

.policy-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-section li {
  font-size: 0.9rem;
  color: #334155;
  margin-bottom: 0.35rem;
}

.policy-section a {
  color: var(--police-blue);
  word-break: break-all;
}

/* Footer */
.privacy-footer {
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .privacy-card {
    padding: 1.75rem 1.25rem;
  }
  .doc-title {
    font-size: 1.6rem;
  }
}
