:root {
  --strike-darker: #0a0a0f;
  --strike-dark: #1a1a2e;
  --background: #0f0f1a;
  --card: #1a1a2e;
  --secondary: #252547;
  --primary: #ff6b35;
  --primary-foreground: #ffffff;
  --muted-foreground: #a0a0b0;
  --strike-orange: #ff6b35;
  --border: #2a2a4a;
  --foreground: #ffffff;
}

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

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  min-height: 100vh;
  line-height: 1.6;
}

.min-h-screen {
  min-height: 100vh;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

/* Header Styles */
.header {
  background-color: var(--strike-darker);
  border-bottom: 1px solid var(--strike-orange);
  padding: 1rem 0;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.logo span {
  color: var(--strike-orange);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--muted-foreground);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--strike-orange);
}

/* Main Content */
.privacy-section {
  padding: 5rem 0;
  background-color: var(--card);
  flex: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

.text-4xl {
  font-size: 2.25rem;
}

.md-text-5xl {
  font-size: 3rem;
}

@media (min-width: 768px) {
  .md-text-5xl {
    font-size: 3rem;
  }
}

.font-heading {
  font-family: "Rajdhani", sans-serif;
}

.font-bold {
  font-weight: 700;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.text-gradient {
  background: linear-gradient(90deg, var(--strike-orange), #ff9e6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-muted-foreground {
  color: var(--muted-foreground);
}

.mb-12 {
  margin-bottom: 3rem;
}

/* Content Sections */
.space-y-8 > * + * {
  margin-top: 2rem;
}

.text-foreground {
  color: var(--foreground);
}

.section-content {
  margin-bottom: 2rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.leading-relaxed {
  line-height: 1.75;
}

.list-disc {
  list-style-type: disc;
}

.list-inside {
  list-style-position: inside;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.ml-4 {
  margin-left: 1rem;
}

/* Footer */
.footer {
  background-color: var(--strike-darker);
  border-top: 1px solid var(--strike-orange);
  padding: 2rem 0;
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-text {
  color: var(--muted-foreground);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-link {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--strike-orange);
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .text-4xl {
    font-size: 2rem;
  }

  .text-2xl {
    font-size: 1.25rem;
  }
}
