/* Light Theme for Privacy Page */

:root {
  /* Light theme colors */
  --primary-blue: #3b82f6;
  --dark-blue: #1d4ed8;

  /* Light theme backgrounds */
  --bg-primary: #ffffff;
  --bg-secondary: #f5f8ff;
  --bg-card: #f8f9fa;

  /* Light theme text colors */
  --text-primary: #1a1a1a;
  --text-secondary: #4a5568;
  --text-tertiary: #718096;

  /* Light theme borders */
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;

  /* Light theme effects */
  --blob-color: rgba(59, 130, 246, 0.08);
}

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

body {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--blob-color);
  filter: blur(100px);
  z-index: 1;
}

.blob-1 {
  top: -300px;
  right: -100px;
}

.blob-2 {
  bottom: -400px;
  left: -200px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.page-title span {
  color: var(--primary-blue);
}

.page-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.last-updated {
  display: inline-block;
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--primary-blue);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

/* Privacy Content Section */
.privacy-content {
  padding: 4rem 0;
  background-color: var(--bg-primary);
}

.content-wrapper {
  display: flex;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.sidebar {
  flex: 0 0 285px;
  position: sticky;
  top: 2rem;
  height: fit-content;
}

.nav-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  max-height: 450px;
  overflow-y: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.nav-card::-webkit-scrollbar {
  width: 6px;
}

.nav-card::-webkit-scrollbar-track {
  background: var(--border-light);
  border-radius: 3px;
}

.nav-card::-webkit-scrollbar-thumb {
  background-color: var(--border-color);
  border-radius: 3px;
}

.nav-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-item {
  margin-bottom: 0.75rem;
}

.nav-link {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  transition: all 0.2s ease;
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue);
  background-color: rgba(59, 130, 246, 0.1);
}

.main-content {
  flex: 1;
  min-width: 0;
}

.section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.section:last-child {
  border-bottom: none;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.section-content {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.section-content p {
  margin-bottom: 1.5rem;
}

.section-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.section-content li {
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.highlight {
  color: var(--primary-blue);
  font-weight: 600;
}

.highlight a {
  color: var(--primary-blue);
  text-decoration: underline;
}

.highlight a:hover {
  color: var(--dark-blue);
}

.contact-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.04) 100%);
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 3rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.contact-description {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.contact-cta {
  background-color: var(--primary-blue);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
  text-decoration: none;
}

.contact-cta:hover {
  background-color: var(--dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
  }

  .sidebar {
    flex: auto;
    position: static;
    margin-bottom: 2rem;
  }

  .nav-card {
    max-height: none;
  }

  .page-title {
    font-size: 2rem;
  }

  .page-description {
    font-size: 1.125rem;
  }

  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
  }

  .nav-card {
    padding: 1.25rem;
  }

  .page-title {
    font-size: 1.75rem;
  }
}
/* Offset for sticky navbar */
.section {
    scroll-margin-top: 120px; /* navbar height */
}
