@import url(/assets/theme/theme.css);

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

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

/* Header */
.header {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f5f5f5;
}

.logo span {
  color: #3b82f6;
}

/* Page Header */
.page-header {
  padding: 4rem 0;
  background-color: rgba(59, 130, 246, 0.05);
  position: relative;
  overflow: hidden;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.page-description {
  font-size: 1.25rem;
  opacity: 0.8;
  max-width: 650px;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.last-updated {
  display: inline-block;
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.05);
  filter: blur(100px);
  z-index: 1;
}

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

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

/* Privacy Content Section */
.privacy-content {
  padding: 4rem 0;
  position: relative;
}

.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: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  height: 450px;
  overflow-y: scroll;
}

.nav-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #f5f5f5;
}

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

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

.nav-link {
  color: rgba(245, 245, 245, 0.7);
  font-size: 0.9375rem;
  transition: all 0.2s ease;
  display: block;
  padding: 0.5rem 0;
  border-radius: 0.375rem;
}

.nav-link:hover, .nav-link.active {
  color: #3b82f6;
  background-color: rgba(59, 130, 246, 0.1);
  padding-left: 0.75rem;
}

.main-content {
  flex: 1;
}

.section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #f5f5f5;
}

.section-content {
  color: rgba(245, 245, 245, 0.8);
  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;
}

.highlight {
  color: #3b82f6;
  font-weight: 600;
}

.contact-card {
  background-color: rgba(59, 130, 246, 0.05);
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 3rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.contact-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-description {
  margin-bottom: 1.5rem;
  color: rgba(245, 245, 245, 0.8);
}

.contact-cta {
  background-color: #3b82f6;
  color: #f5f5f5;
  padding: 0.9rem 1.8rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  border: none;
  display: inline-block;
}

.contact-cta:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
}

@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;
  }

  .footer-col {
    flex: 0 0 48%;
  }

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

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

@media (max-width: 480px) {
  .footer-col {
    flex: 0 0 100%;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .nav-card {
    padding: 1.25rem;
  }
}