/* ===== VARIABLES & RESET ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --primary-dark: #1a120b;
  --primary-brown: #3c2a21;
  --accent-orange: #f4a261;
  --accent-red: #e76f51;
  --accent-light: #ffd8b1;
  --light-beige: #d5cea3;
  --off-white: #e5e5cb;
  --dark-brown: #2c1f14;
  --success: #198754;
  --error: #dc3545;
  --warning: #ffc107;
  --info: #3498db;
  
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-secondary: 'Space Grotesk', var(--font-primary);
  
  --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.25);
  --border-radius: 10px;
  --section-glow: 0 0 15px rgba(244, 162, 97, 0.4);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background: linear-gradient(135deg, var(--primary-brown) 0%, var(--primary-dark) 100%);
  background-attachment: fixed;
  color: var(--off-white);
  line-height: 1.65;
  min-height: 100vh;
  padding: 40px 20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== PRIVACY CONTAINER ===== */
.privacy-container {
  background: rgba(44, 31, 20, 0.92);
  backdrop-filter: blur(6px);
  border-radius: var(--border-radius);
  border: 1px solid rgba(244, 162, 97, 0.25);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
  margin: 0 auto;
  max-width: 900px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.privacy-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(244, 162, 97, 0.1), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.privacy-container:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), var(--section-glow);
  border-color: rgba(244, 162, 97, 0.4);
}

/* ===== TYPOGRAPHY ===== */
.privacy-container h1 {
  font-family: var(--font-secondary);
  color: var(--accent-orange);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  text-align: center;
  margin-bottom: 1.8rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.5px;
  font-weight: 700;
  line-height: 1.3;
}

.privacy-container h2 {
  font-family: var(--font-secondary);
  color: var(--accent-light);
  font-size: clamp(1.3rem, 4vw, 1.7rem);
  margin: 2.2rem 0 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid rgba(244, 162, 97, 0.3);
  font-weight: 600;
}

.privacy-container p {
  margin-bottom: 1.4rem;
  font-size: 1.05rem;
}

.privacy-container strong {
  color: var(--accent-light);
  font-weight: 600;
}

.privacy-container ul {
  list-style: none;
  margin: 1.8rem 0;
  padding-left: 1.2rem;
}

.privacy-container li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.8rem;
  font-size: 1.05rem;
}

.privacy-container li::before {
  content: "•";
  color: var(--accent-orange);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -0.3rem;
}

.privacy-container a {
  color: var(--accent-orange);
  text-decoration: none;
  transition: color var(--transition);
  font-weight: 500;
  position: relative;
}

.privacy-container a:hover {
  color: var(--accent-light);
}

.privacy-container a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent-orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.privacy-container a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .privacy-container {
    padding: 1.8rem;
  }
  
  body {
    padding: 30px 15px;
  }
  
  .privacy-container li {
    padding-left: 1.5rem;
  }
}

@media (max-width: 576px) {
  .privacy-container {
    padding: 1.5rem;
  }
  
  .privacy-container h1 {
    font-size: 1.8rem;
  }
  
  .privacy-container h2 {
    font-size: 1.4rem;
  }
}

/* ===== ACCESSIBILITY ===== */
:focus-visible {
  outline: 3px solid var(--accent-orange);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
