    :root {
      --brand: #2563eb;
      --brand-dark: #1e40af;
      --brand-light: #3b82f6;
      --accent: #6366f1;
      --text-main: #1f2937;
      --text-secondary: #4b5563;
      --text-muted: #6b7280;
      --border: #e5e7eb;
      --bg: #f9fafb;
      --white: #ffffff;
      --radius: 16px;
      --radius-lg: 24px;
      --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
      --shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
      --shadow-lg: 0 10px 32px rgba(15, 23, 42, 0.12);
      --shadow-xl: 0 20px 48px rgba(15, 23, 42, 0.16);
      --gradient: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
      --gradient-light: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
          --gradient-hero: linear-gradient(135deg, #e9f3fb 0%, #dde8fb 50%, #d7eefb 100%);

    }

    /* Privacy page specific styles - don't override global */
    body.privacy-page {
      background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      color: var(--text-main);
      min-height: 100vh;
      line-height: 1.6;
    }

    html {
      scroll-behavior: smooth;
    }

    ::-webkit-scrollbar {
      width: 10px;
    }

    ::-webkit-scrollbar-track {
      background: var(--bg);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--brand-light);
      border-radius: 5px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--brand);
    }

/* ====================== CONTAINER ====================== */
.privacy-container {
  /* max-width: 1200px; */
  margin: 120px  60px ;
  padding: 0 40px;
}

/* ====================== HEADER SECTION ====================== */
.privacy-container .policy-header {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  position: relative;
  padding: 80px 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.2);
}

.privacy-container .policy-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.privacy-container .policy-header::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.privacy-container .header-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 32px;
}

.privacy-container .logo-rect {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 32px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
  flex-shrink: 0;
}

.privacy-container .policy-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.privacy-container .policy-title {
  font-weight: 800;

  line-height: 1.2;
  font-size: 2.8rem;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 50%, #1e293b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #1e293b;
    opacity: 1 !important;
    visibility: visible !important;
    text-align: center;
}

.privacy-container .policy-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.privacy-container .policy-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin-top: 4px;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 12px;
  border-radius: 20px;
  width: fit-content;
  backdrop-filter: blur(10px);
}

.privacy-container .update-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ====================== CONTENT ====================== */
.privacy-container .content-area {
  /* padding: 48px; */
  /* background: var(--white); */
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.privacy-container .divider {
  height: 3px;
  border-radius: 2px;
  background: var(--gradient);
  width: 48px;
  margin-bottom: 24px;
}

/* ====================== SECTION CARDS ====================== */
.privacy-container .section {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.privacy-container .section:hover {
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.12);
  transform: translateY(-2px);
  border-color: rgba(59, 130, 246, 0.1);
}

.privacy-container .section:last-child {
  margin-bottom: 0;
}

.privacy-container .section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f3f4f6;
}

.privacy-container .section-icon {
  width: 56px;
  height: 56px;
  background: #4f8cff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.privacy-container .section-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

  .privacy-container h2 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #4c79c2 0%, #3b82f6 50%, #7092c8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #1e293b;
    opacity: 1 !important;
    visibility: visible !important;
        line-height: normal;

  }
  .privacy-container .section h2,.privacy-container .section h3 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #4c79c2 0%, #3b82f6 50%, #7092c8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #1e293b;
    opacity: 1 !important;
    visibility: visible !important;
        line-height: normal;

  }

.privacy-container p,
.privacy-container li {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 16px 0;
}

.privacy-container ul {
  padding-left: 28px;
  margin-bottom: 20px;
  margin-top: 12px;
}

.privacy-container li {
  margin-bottom: 12px;
  position: relative;
}

.privacy-container li::marker {
  color: var(--brand);
}

.privacy-container li strong {
  color: var(--text-main);
  font-weight: 600;
}

/* ====================== CONTACT SECTION ====================== */


.privacy-container .contact-title-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.privacy-container .contact-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
  color: var(--white);
}

.privacy-container .contact-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-container .contact-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin: 0;
}

.privacy-container .contact-area {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.privacy-container .contact-mode {
  background: var(--gradient);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.privacy-container .contact-mode svg{
   width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-container .contact-mode::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
}

.privacy-container .contact-mode:hover::before {
  left: 100%;
}

.privacy-container .contact-mode:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.privacy-container .contact-mode:active {
  transform: translateY(0);
}

.privacy-container .contact-note {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  background: rgba(255 ,255 ,255 , 0.57);
  padding: 16px;
  border-radius: 10px;
  border-left: 3px solid var(--brand);
}


/* ====================== RESPONSIVE ====================== */
@media (max-width: 768px) {
  .privacy-container {
    margin: 100px 20px 40px 20px;
    padding: 0 20px;
  }

  .privacy-container .policy-header {
    padding: 48px 32px;
    margin-bottom: 24px;
  }

  .privacy-container .header-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .privacy-container .policy-title {
    font-size: 2.3rem;
  }

  .privacy-container .policy-desc {
    font-size: 1rem;
  }

  .privacy-container .section {
    padding: 28px 24px;
    margin-bottom: 20px;
  }

  .privacy-container .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

 .privacy-container h2 {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #4c79c2 0%, #3b82f6 50%, #7092c8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #1e293b;
    opacity: 1 !important;
    visibility: visible !important;
        line-height: normal;

  }
  .privacy-container .section h2,.privacy-container .section h3 {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #4c79c2 0%, #3b82f6 50%, #7092c8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #1e293b;
    opacity: 1 !important;
    visibility: visible !important;
        line-height: normal;

  }

  .privacy-container p,
  .privacy-container li {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .privacy-container {
    margin: 90px 15px 30px 15px;
    padding: 0 15px;
  }

  .privacy-container .policy-header {
    padding: 36px 24px;
    border-radius: 16px;
  }

  .privacy-container .policy-title {
    font-size: 2rem;
  }

  .privacy-container .policy-desc {
    font-size: 0.9rem;
  }

  .privacy-container .logo-rect {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .privacy-container .section {
    padding: 24px 20px;
  }

  .privacy-container .section-icon {
    width: 48px;
    height: 48px;
  }

  .privacy-container h2 {
    font-size: 1.25rem;
  }

  .privacy-container p,
  .privacy-container li {
    font-size: 0.9rem;
  }

 
}

/* ====================== PRINT ====================== */
@media print {
  .privacy-container {
    box-shadow: none;
    border: 1px solid var(--border);
    background: var(--white);
  }

  .privacy-container .policy-header {
    box-shadow: none;
  }
}


