/**
 * Privacy Policy Styles for Astagfirullah Extension
 */

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

body {
  font-family: 'Cairo', 'Segoe UI', system-ui, sans-serif;
  background: linear-gradient(135deg, #F8FAFA 0%, #E8F0F2 100%);
  color: #2D3436;
  line-height: 1.7;
  min-height: 100vh;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  min-height: 100vh;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

/* Header */
.header {
  background: linear-gradient(135deg, #5A445F 0%, #3D2D41 100%);
  color: white;
  padding: 48px 32px;
  text-align: center;
}

.logo {
  font-size: 64px;
  margin-bottom: 16px;
}

.header h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.subtitle {
  font-size: 16px;
  opacity: 0.9;
}

/* Content */
.content {
  padding: 48px 32px;
}

.content > h2 {
  font-size: 32px;
  font-weight: 700;
  color: #5A445F;
  margin-bottom: 8px;
  text-align: center;
}

.last-updated {
  text-align: center;
  color: #636E72;
  font-size: 14px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid #E1E8ED;
}

/* Sections */
.section {
  margin-bottom: 32px;
}

.section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2D3436;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #FF9800;
  display: inline-block;
}

.section p {
  margin-bottom: 12px;
  color: #2D3436;
}

.section ul {
  margin-left: 24px;
  margin-bottom: 12px;
}

.section li {
  margin-bottom: 8px;
  color: #2D3436;
}

.section li strong {
  color: #5A445F;
}

.section code {
  background: #F8FAFA;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Monaco', 'Consolas', monospace;
  font-size: 13px;
  color: #FF9800;
  border: 1px solid #E1E8ED;
}

.section a {
  color: #FF9800;
  text-decoration: none;
  font-weight: 500;
}

.section a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #F8FAFA;
  padding: 32px;
  text-align: center;
  border-top: 1px solid #E1E8ED;
}

.footer p {
  color: #636E72;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer .arabic {
  font-size: 18px;
  color: #FF9800;
  margin-top: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    padding: 32px 20px;
  }

  .header h1 {
    font-size: 28px;
  }

  .logo {
    font-size: 48px;
  }

  .content {
    padding: 32px 20px;
  }

  .content > h2 {
    font-size: 24px;
  }

  .section h3 {
    font-size: 18px;
  }

  .section ul {
    margin-left: 16px;
  }
}

@media (max-width: 480px) {
  .header h1 {
    font-size: 24px;
  }

  .content > h2 {
    font-size: 20px;
  }

  .section h3 {
    font-size: 16px;
  }

  .section p,
  .section li {
    font-size: 14px;
  }
}

/* Print Styles */
@media print {
  .container {
    box-shadow: none;
  }

  .header {
    background: #5A445F !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}
