* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
}

body {
  background: linear-gradient(135deg, #f4f1ee 0%, #e8e4e0 100%);
  color: #2c2c2c;
  scroll-behavior: smooth;
  line-height: 1.6;
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.logo {
  font-size: 1.5rem;
  color: #6e44ff;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(110, 68, 255, 0.2);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #2c2c2c;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: #6e44ff;
  transform: translateY(-2px);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #6e44ff;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #6e44ff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #6e44ff 0%, #8b5cf6 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.last-updated {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  display: inline-block;
  backdrop-filter: blur(10px);
}

.last-updated span {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Content Section */
.content-section {
  padding: 80px 0;
  background: white;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: start;
}

/* Table of Contents */
.table-of-contents {
  position: sticky;
  top: 120px;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

.table-of-contents h3 {
  color: #6e44ff;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.table-of-contents ul {
  list-style: none;
}

.table-of-contents li {
  margin-bottom: 0.75rem;
}

.table-of-contents a {
  color: #2c2c2c;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: block;
  padding: 0.5rem 0;
  border-radius: 8px;
  padding-left: 0.5rem;
}

.table-of-contents a:hover {
  color: #6e44ff;
  background: rgba(110, 68, 255, 0.1);
  transform: translateX(5px);
}

.table-of-contents a.active {
  color: #6e44ff;
  background: rgba(110, 68, 255, 0.1);
  font-weight: 600;
}

/* Policy Content */
.policy-content {
  max-width: 800px;
}

.policy-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.policy-section h2 {
  color: #6e44ff;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  scroll-margin-top: 120px;
}

.policy-section h3 {
  color: #2c2c2c;
  font-size: 1.3rem;
  margin: 1.5rem 0 1rem;
  font-weight: 600;
}

.policy-section p {
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.policy-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.policy-section li {
  color: #555;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.policy-section strong {
  color: #2c2c2c;
  font-weight: 600;
}

.contact-info {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
  padding: 1.5rem;
  border-radius: 15px;
  margin: 1.5rem 0;
  border-left: 4px solid #6e44ff;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  color: white;
  padding: 40px 20px 20px;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 2rem;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h4 {
  color: #6e44ff;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #6e44ff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  color: #888;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .table-of-contents {
    position: static;
    order: -1;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .policy-section h2 {
    font-size: 1.5rem;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .policy-section {
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .table-of-contents {
    padding: 1.5rem;
  }
} 