/* Design System Tokens */
:root {
  --bg-primary: #f8fafc;
  --bg-card: #ffffff;
  --bg-dark: #0f172a;
  
  /* Brand Colors */
  --brand-orange: #df6b20;
  --brand-orange-hover: #c85611;
  --brand-orange-light: #fff7ed;
  --brand-orange-border: #ffedd5;
  
  /* Grayscale / Typography */
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  --text-white: #ffffff;
  --text-white-muted: #94a3b8;
  
  /* Layout & Borders */
  --border-color: #e2e8f0;
  --border-dark: #334155;
  --border-radius-lg: 16px;
  --border-radius-md: 12px;
  --border-radius-sm: 8px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  
  --transition-default: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navbar */
.navbar {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo img {
  height: 38px;
}

.btn {
  padding: 10px 20px;
  border-radius: var(--border-radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-default);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-outline {
  border: 2px solid var(--border-color);
  background-color: transparent;
  color: var(--text-muted);
}

.btn-outline:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  background-color: var(--brand-orange-light);
}

/* Content Area */
.policy-wrapper {
  padding: 140px 0 80px 0;
}

.policy-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.policy-header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 24px;
  margin-bottom: 32px;
}

.policy-header h1 {
  font-size: 2.25rem;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.policy-header p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.policy-body h2 {
  font-size: 1.35rem;
  margin: 32px 0 16px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.policy-body h2:first-of-type {
  margin-top: 0;
}

.policy-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
  text-align: justify;
}

.policy-body ul {
  list-style-position: inside;
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  padding-left: 12px;
}

.policy-body li {
  margin-bottom: 8px;
}

/* Footer */
.footer {
  background-color: var(--bg-dark);
  color: white;
  padding: 40px 0;
  border-top: 1px solid var(--border-dark);
  text-align: center;
}

.footer p {
  color: var(--text-white-muted);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.footer a {
  color: var(--brand-orange);
  text-decoration: none;
  font-weight: 500;
}

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

@media (max-width: 640px) {
  .policy-card {
    padding: 24px;
  }
  .policy-header h1 {
    font-size: 1.75rem;
  }
}
