/* Privacy Policy Specific Styles */

.logo a {
  color: #A6FF1A;
  text-decoration: none;
}

.privacy-main {
  min-height: 100vh;
  padding: 40px 0;
  background: #111;
}

.privacy-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

/* Table of Contents */
.privacy-toc {
  position: sticky;
  top: 120px;
  background: rgba(166, 255, 26, 0.05);
  border: 1px solid rgba(166, 255, 26, 0.15);
  border-radius: 12px;
  padding: 24px;
  height: fit-content;
}

.privacy-toc h3 {
  color: #A6FF1A;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 20px 0;
  border-bottom: 2px solid rgba(166, 255, 26, 0.2);
  padding-bottom: 12px;
}

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

.privacy-toc nav li {
  margin-bottom: 8px;
}

.privacy-toc nav a {
  color: #A6FF1A;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: all 0.3s ease;
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
  border-left: 3px solid transparent;
}

.privacy-toc nav a:hover {
  background: rgba(166, 255, 26, 0.1);
  border-left-color: #A6FF1A;
  transform: translateX(4px);
}

.privacy-toc nav a.active {
  background: rgba(166, 255, 26, 0.15);
  border-left-color: #A6FF1A;
  font-weight: 500;
}

/* Main Content */
.privacy-content {
  background: rgba(166, 255, 26, 0.02);
  border: 1px solid rgba(166, 255, 26, 0.1);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.privacy-header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 2px solid rgba(166, 255, 26, 0.2);
}

.privacy-header h1 {
  color: #A6FF1A;
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  letter-spacing: 1px;
}

.privacy-date {
  color: rgba(166, 255, 26, 0.7);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  background: rgba(166, 255, 26, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
}

/* Sections */
.privacy-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.privacy-section h2 {
  color: #A6FF1A;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 20px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(166, 255, 26, 0.3);
  position: relative;
}

.privacy-section h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: #A6FF1A;
}

.privacy-section h3 {
  color: #A6FF1A;
  font-size: 1.3rem;
  font-weight: 500;
  margin: 30px 0 16px 0;
}

.privacy-section p {
  color: rgba(166, 255, 26, 0.9);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.privacy-section strong {
  color: #A6FF1A;
  font-weight: 600;
}

/* Lists */
.privacy-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.privacy-list li {
  color: rgba(166, 255, 26, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.privacy-list li::before {
  content: '→';
  color: #A6FF1A;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* Note Boxes */
.privacy-note {
  background: rgba(166, 255, 26, 0.08);
  border: 1px solid rgba(166, 255, 26, 0.2);
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  border-left: 4px solid #A6FF1A;
}

.privacy-note p {
  margin: 0;
  color: rgba(166, 255, 26, 0.95);
}

.privacy-contact-box {
  background: rgba(166, 255, 26, 0.1);
  border: 1px solid rgba(166, 255, 26, 0.3);
  border-radius: 12px;
  padding: 24px;
  margin: 20px 0;
  text-align: center;
}

.privacy-contact-box p {
  margin: 0;
  color: #A6FF1A;
  font-weight: 500;
}

.privacy-contact-box a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  background: rgba(166, 255, 26, 0.2);
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.privacy-contact-box a:hover {
  background: rgba(166, 255, 26, 0.3);
  transform: translateY(-1px);
}

/* Footer */
.privacy-footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 2px solid rgba(166, 255, 26, 0.2);
  text-align: center;
}

.privacy-footer p {
  color: rgba(166, 255, 26, 0.6);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* Links */
a {
  color: #A6FF1A;
  transition: all 0.3s ease;
}

a:hover {
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .privacy-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .privacy-toc {
    position: static;
    order: 2;
    margin-top: 20px;
  }
  
  .privacy-content {
    padding: 24px;
    order: 1;
  }
  
  .privacy-header h1 {
    font-size: 2.2rem;
  }
  
  .privacy-section h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .privacy-main {
    padding: 20px 0;
  }
  
  .privacy-container {
    padding: 0 16px;
  }
  
  .privacy-content {
    padding: 20px;
  }
  
  .privacy-header h1 {
    font-size: 1.8rem;
  }
}