/* Privacy Policy (formatted from template/privacy_policy.css; no design changes) */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --pp-bg: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --pp-accent: #3b82f6;
  --pp-card-bg: #ffffff;
  --pp-text: #0f172a;
  --pp-muted: #475569;
  --pp-border: rgba(2,6,23,0.08);
}


/* Hero Section */
.hero {
  background: linear-gradient(135deg, #024173 0%, #1a5490 100%);
  color: #fff;
  text-align: center;
  padding: 4rem 0; 
  position: relative;
  overflow: hidden;
  height: min-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="legal-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,0 L20,10 L10,20 L0,10 Z" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23legal-pattern)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-content { position: relative; z-index: 2; }

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #C8A451, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.hero p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.hero-lead { font-size: clamp(1rem, 2.2vw, 1.125rem); opacity: .9; }

/* Main (first variant) */
.main-content { background: #f8fafc; padding: 32px 16px 64px; }
.main-content .container { max-width: 90%; margin: 0 auto; }
.pp-section { margin: 24px 0; }
.pp-title { font-size: 1.25rem; color: var(--pp-text); display: flex; gap: 10px; align-items: center; margin: 0 0 8px; }
.pp-title i { color: var(--pp-accent); }
.pp-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.pp-item { display: grid; grid-template-columns: 1fr; gap: 10px; align-items: start; background: var(--pp-card-bg); border: 1px solid var(--pp-border); border-radius: 12px; padding: 12px 14px; box-shadow: 0 6px 18px rgba(2,6,23,0.04); }
.pp-item i { color: var(--pp-accent); margin-top: 2px; }
.pp-section p { color: var(--pp-muted); }

/* Card-y note */
.pp-note { background: #fff; border: 1px dashed rgba(2,6,23,0.12); border-radius: 12px; padding: 14px 16px; color: var(--pp-muted); margin-top: 24px; box-shadow: 0 4px 10px rgba(2,6,23,0.04); }
.pp-note i { color: var(--pp-accent-2); margin-right: 8px; }

/* Simple card layout variant */
.pp-card { background: var(--pp-card-bg); border: 1px solid var(--pp-border); border-radius: 16px; padding: 18px; box-shadow: 0 12px 28px rgba(2,6,23,0.06); }
.pp-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.pp-icon { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--pp-accent), var(--pp-accent-2)); }
.pp-list.bullets li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; }

@media (min-width: 720px) { .pp-list { grid-template-columns: 1fr 1fr; } }

/* Second block from template (duplicate structural patterns, retained) */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: "Inter", sans-serif; color: #333; background: #f8f9fa; line-height: 1.7; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }



/* Main (second variant) */
.main-content { padding: 0; }
.pp-intro { background: #fff; border-radius: 20px; padding: 1.5rem; box-shadow: 0 10px 30px rgba(2, 65, 115, 0.08); border: 1px solid rgba(200, 164, 81, 0.08); margin-bottom: 2rem; }
.pp-section { margin: 1.25rem 0; }
.pp-card { background: #fff; border-radius: 20px; padding: 1.5rem; box-shadow: 0 15px 40px rgba(2, 65, 115, 0.08); border: 1px solid rgba(200, 164, 81, 0.08); }
.pp-card + .pp-card { margin-top: 1rem; }
.pp-card-header { display: flex; align-items: center; gap: .8rem; margin-bottom: .75rem; }
.pp-icon { display: grid; place-items: center; width: 48px; height: 48px; background: linear-gradient(135deg, #024173, #1a5490); color: #fff; border-radius: 12px; font-size: 1.25rem; }
.pp-title { font-size: 1.25rem; color: #024173; font-weight: 700; }
.pp-note { background: #f8f9fa; border-left: 3px solid #C8A451; padding: .75rem 1rem; border-radius: 8px; margin-bottom: .75rem; }
.pp-list { list-style: none; }
.pp-list li { display: flex; gap: .6rem; align-items: flex-start; padding: .6rem .75rem; background: #f8f9fa; border-radius: 10px; border-left: 3px solid #C8A451; margin-bottom: .5rem; }
.pp-list li i { color: #024173; margin-top: .15rem; }
.pp-list.bullets li { background: transparent; border-left: none; padding-left: 0; }
.pp-list.bullets li i { color: #C8A451; }

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 3rem 0 2rem; }
  .hero h1 { font-size: 2rem; }
  .pp-card, .pp-intro { padding: 1.1rem; }
}
