:root {
  --primary-color: #f97316;
  --secondary-color: #1e293b;
  --bg-light: #f8fafc;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
}

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

body {
  font-family: system-ui, -apple-system, sans-serif;
  color: var(--text-main);
  line-height: 1.6;
  background: #fff;
}

.hero-section {
  background: linear-gradient(rgba(30, 41, 59, 0.85), rgba(30, 41, 59, 0.85)), url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&q=80&w=1920');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 12px;
  font-weight: 800;
}

.hero-section .subtitle {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.content-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.policy-content h2 {
  margin: 32px 0 16px;
  color: var(--secondary-color);
  font-size: 1.75rem;
}

.policy-content p {
  margin-bottom: 20px;
  color: var(--text-main);
}

.policy-content ul {
  margin-bottom: 24px;
  padding-left: 20px;
}

.policy-content li {
  margin-bottom: 10px;
}

.contact-box {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 12px;
  margin-top: 50px;
  border-left: 4px solid var(--primary-color);
}

/* Global Page Loader */ .page-loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid var(--bg-light);
  border-top: 5px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loader-text {
  margin-top: 20px;
  color: var(--text-main);
  font-size: 1.1rem;
  font-weight: 500;
}
