/* FlexZen Premium Design System - Privacy Policy Page - Desktop Only */
:root {
  /* Primary Palette - Deep Ocean Blue */
  --flexzen-primary: #0F172A;
  --flexzen-primary-light: #1E293B;
  --flexzen-primary-bright: #3B82F6;
  --flexzen-primary-accent: #2563EB;
  
  /* Secondary Palette - Vibrant Coral */
  --flexzen-secondary: #F97316;
  --flexzen-secondary-light: #FB923C;
  --flexzen-secondary-dark: #EA580C;
  
  /* Accent Palette - Modern Teal */
  --flexzen-accent: #06B6D4;
  --flexzen-accent-light: #22D3EE;
  --flexzen-accent-dark: #0891B2;
  
  /* Neutral Palette - Clean Grays */
  --flexzen-gray-50: #F8FAFC;
  --flexzen-gray-100: #F1F5F9;
  --flexzen-gray-200: #E2E8F0;
  --flexzen-gray-300: #CBD5E1;
  --flexzen-gray-400: #94A3B8;
  --flexzen-gray-600: #475569;
  --flexzen-gray-700: #334155;
  --flexzen-gray-800: #1E293B;
  --flexzen-gray-900: #0F172A;
  
  /* Semantic Colors */
  --flexzen-white: #FFFFFF;
  --flexzen-black: #0A0A0A;
  
  /* Shadows */
  --flexzen-shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --flexzen-shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -1px rgba(15, 23, 42, 0.06);
  --flexzen-shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -2px rgba(15, 23, 42, 0.05);
  --flexzen-shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
}

/* Section 1 - Privacy Policy Content */
.u-section-1 {
  min-height: auto;
  background: linear-gradient(180deg, var(--flexzen-gray-50) 0%, var(--flexzen-white) 100%);
  padding: 140px 0;
}

.u-section-1 .u-sheet-1 {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 80px;
}

.u-section-1 .u-text-1 {
  font-weight: 800;
  font-size: 4rem;
  margin: 0 0 64px 0;
  color: var(--flexzen-gray-900);
  font-family: 'Manrope', 'Poppins', sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.2;
  text-align: center;
  position: relative;
  padding-bottom: 32px;
}

.u-section-1 .u-text-1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, var(--flexzen-primary-bright), var(--flexzen-accent));
  border-radius: 3px;
}

.u-section-1 .u-text-2 {
  font-size: 1.1875rem;
  line-height: 2;
  margin: 0;
  color: var(--flexzen-gray-700);
  font-family: 'Inter', sans-serif;
  text-align: left;
  background: var(--flexzen-white);
  padding: 64px;
  border-radius: 24px;
  box-shadow: var(--flexzen-shadow-xl);
  border: 1px solid var(--flexzen-gray-200);
}

.u-section-1 .u-text-font {
  font-family: 'Manrope', 'Poppins', sans-serif;
}

/* Header Styles */
.u-header-modern {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: var(--flexzen-shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--flexzen-gray-200);
}

.u-sheet {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

.u-header-modern .u-sheet-1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 80px;
}

.u-logo-text-1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--flexzen-gray-900);
  text-decoration: none;
  font-family: 'Manrope', 'Poppins', sans-serif;
  letter-spacing: -0.03em;
  transition: color 0.3s;
}

.u-logo-text-1:hover {
  color: var(--flexzen-primary-bright);
}

.u-logo-text-inner {
  background: linear-gradient(135deg, var(--flexzen-primary-bright) 0%, var(--flexzen-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Footer Styles */
.u-footer-modern {
  background: var(--flexzen-gray-900);
  color: var(--flexzen-gray-300);
  padding: 100px 0 60px;
}

.u-footer-modern .u-sheet-1 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

.u-footer-modern .u-text-1 {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--flexzen-gray-400);
  text-align: center;
  margin: 0 0 64px 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.u-footer-modern .u-layout-wrap-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 64px;
}

.u-footer-modern .u-text-2,
.u-footer-modern .u-text-3 {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--flexzen-gray-400);
}

.u-footer-modern .u-text-2 a {
  color: var(--flexzen-accent-light);
  text-decoration: none;
  transition: color 0.3s;
}

.u-footer-modern .u-text-2 a:hover {
  color: var(--flexzen-accent);
}

.u-text-footer-link {
  color: var(--flexzen-gray-300);
  text-decoration: none;
  transition: color 0.3s;
  display: inline-block;
  margin-bottom: 12px;
  font-size: 1rem;
}

.u-text-footer-link:hover {
  color: var(--flexzen-accent-light);
}

/* Global Typography */
body {
  font-family: 'Inter', sans-serif !important;
  font-size: 18px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', 'Poppins', sans-serif !important;
}

/* Utility Classes */
.u-btn-modern {
  border-radius: 16px !important;
}

.u-radius-modern {
  border-radius: 16px !important;
}

/* Palette Overrides */
.u-palette-1-base {
  background-color: var(--flexzen-primary-bright) !important;
}

.u-palette-1-light-1 {
  background-color: var(--flexzen-accent-light) !important;
}

.u-palette-2-base {
  background-color: var(--flexzen-secondary) !important;
}

.u-palette-2-light-2 {
  background-color: var(--flexzen-secondary-light) !important;
}

.u-palette-2-dark-2 {
  background-color: var(--flexzen-gray-900) !important;
}
