/* International SaaS Layout - Brand Color Token Integrated */
:root {
  --bg-document: #ffffff;
  
  /* Brand Corporate Colors */
  --primary-color: #033274;    /* Legacy Core Brand Slate Blue */
  --text-dark: #1e293b;        /* Deep Headings Contrast (Slate 800) */
  --text-main: #475569;        /* Clean Editorial Body Text (Slate 600) */
  --text-light: #64748b;       /* Subtle Metadata & Inactive Nav Links */
  --border-hairline: #e2e8f0;  /* Razor-thin Clean Border Divider */
  --bg-surface-soft: #f8fafc;  /* Functional Accent Card Background */
  --accent-warn: #f59e0b;      /* Notice Highlights Box Indicator Color */
  
  /* Layout Typography Stack */
  --font-editorial: 'DM_Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* Base Formats Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-document);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-editorial);
  color: var(--text-main);
  line-height: 1.8;
}

/* Structural Master Layout Container */
.privacy-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
}

/* Sticky Left Table of Contents */
.privacy-sidebar {
  position: sticky;
  top: 28px;
  height: fit-content;
}

.sidebar-header {
  margin-bottom: 28px;
}

.sidebar-header-mobile {
  display: none;
}

.effective-date {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sidebar-logo {
  max-width: 150px;
}

.sidebar-logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 2px solid var(--border-hairline);
  padding-left: 18px;
}

.sidebar-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-link:hover {
  color: var(--primary-color);
}

.sidebar-link.active {
  color: var(--primary-color);
  font-weight: 700;
}

/* Right Content Blueprint Configuration */
.privacy-content {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* Header Area Block Setup */
.content-header {
  border-bottom: 1px solid var(--border-hairline);
  padding-bottom: 10px;
}

.main-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}

.intro-lead {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.65;
}

.intro-text {
  font-size: 15px;
  color: var(--text-main);
  margin-bottom: 12px;
}

/* Content Headings Setup */
.privacy-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.privacy-section h3 {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 32px;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.privacy-section p {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 5px;
}

/* Clean Unordered Minimal Lists */
.privacy-section ul {
  list-style: none;
  margin-bottom: 28px;
}

.privacy-section ul li {
  font-size: 15px;
  color: rgb(6, 6, 79);
  font-weight: 400;
  position: relative;
  padding-left: 20px;
  margin-bottom: 2px;
}

.privacy-section ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 11px;
  width: 5px;
  height: 5px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

/* Modern Minimalist Notice Box Accent */
.alert-box {
  background-color: var(--bg-surface-soft);
  border-left: 3px solid var(--accent-warn);
  padding: 24px;
  border-radius: 0 6px 6px 0;
  margin-top: 32px;
}

.alert-text {
  color: var(--text-dark) !important;
  font-weight: 500;
  font-size: 14px !important;
  margin-bottom: 0 !important;
}

.privacy-section em {
  font-style: normal;
  font-family: var(--font-mono);
  color: var(--text-light);
  font-size: 13px;
  display: block;
  margin-top: 8px;
}

/* Contact Footer Container Card */
.contact-card {
  border-top: 1px solid var(--border-hairline);
  padding-top: 48px;
}

.company-name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 16px;
  margin-bottom: 6px !important;
}

.email-link {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 5px;
  font-size: 15px;
  transition: color 0.15s ease;
}

.email-link:hover {
  color: var(--text-dark);
}

/* Dynamic Viewports Mobile Breakpoints Scaling */
@media (max-width: 992px) {
  .privacy-container {
    grid-template-columns: 1fr;
    padding: 64px 24px;
    gap: 48px;
  }
  
  .privacy-sidebar {
    display: none; /* Hide sticky sidebar tracker for seamless multi-touch navigation */
  }

  .sidebar-header-mobile {
  display: block;
}
  .main-title {
    font-size: 32px;
    letter-spacing: -0.03em;
  }
}

@media (max-width: 792px) {
  .privacy-container {
    margin-bottom: 20px;
  }
  
  .privacy-content {
  gap: 38px;
}
  .main-title {
    font-size: 30px;
    letter-spacing: -0.03em;
  }
}