* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f8f9ff;
  color: #111827;
  overflow-x: hidden;
}

/* ========== SKIP LINK ========== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #4f46ff;
  color: white;
  padding: 8px 16px;
  z-index: 1001;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  font-weight: 500;
}

.skip-link:focus {
  top: 0;
  outline: none;
}

/* ========== NAVBAR STYLES ========== */
.navbar {
  height: 90px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  border-bottom: 1px solid #ececf8;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 1002;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #6b5cff, #4338ff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.logo h2 {
  font-size: 24px;
  background: linear-gradient(135deg, #6b5cff, #4338ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

/* Navigation Menu */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-menu li a {
  text-decoration: none;
  color: #333;
  padding: 10px 18px;
  display: block;
  transition: all 0.3s ease;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
}

.nav-menu li a:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.nav-menu li.active a {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

/* CSS Only Hamburger */
.nav-toggle {
  display: none;
}

.hamburger {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid #ececf8;
  background: #ffffff;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1002;
  box-shadow: 0 8px 20px rgba(79, 70, 255, 0.08);
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #4f46ff;
  border-radius: 20px;
  transition: all 0.3s ease;
}

/* Focus styles for accessibility */
.nav-menu li a:focus-visible,
.sidebar a:focus-visible,
.cta-btn:focus-visible,
.social-links a:focus-visible,
.policy-card a:focus-visible,
.hamburger:focus-visible {
  outline: 2px solid #4f46ff;
  outline-offset: 2px;
  border-radius: 4px;
}

/* ========== HERO SECTION ========== */
.hero {
  width: 90%;
  max-width: 1400px;
  margin: 60px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.hero-content {
  flex: 1;
}

.badge {
  background: #ede9ff;
  color: #4f46ff;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
}

.hero h1 {
  font-size: 70px;
  margin: 20px 0;
  color: #081028;
  line-height: 1.2;
}

.hero h1 span {
  color: #4f46ff;
}

.hero p {
  color: #667085;
  line-height: 1.8;
  font-size: 18px;
  max-width: 600px;
}

.updated {
  margin-top: 25px;
  color: #667085;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Hero Image */
.hero-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.shield {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ede9ff, #e8e6ff);
  color: #4f46ff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 120px;
}

.secure-card {
  position: absolute;
  right: 0;
  bottom: 20px;
  background: white;
  padding: 18px 25px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 15px;
  align-items: center;
}

.secure-card i {
  font-size: 28px;
  color: #4f46ff;
}

.secure-card h4 {
  font-size: 16px;
  margin-bottom: 5px;
  color: #081028;
}

.secure-card p {
  font-size: 13px;
  color: #667085;
  margin: 0;
}

/* ========== POLICY CONTAINER ========== */
.policy-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
}

/* Sidebar */
.sidebar {
  background: white;
  border: 1px solid #ececf8;
  border-radius: 20px;
  padding: 25px;
  height: max-content;
  position: sticky;
  top: 100px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.sidebar h3 {
  margin-bottom: 20px;
  font-size: 18px;
  color: #081028;
}

.sidebar ul {
  list-style: none;
}

.sidebar li {
  margin-bottom: 12px;
}

.sidebar a {
  text-decoration: none;
  color: #475569;
  font-size: 14px;
  transition: all 0.3s ease;
  display: block;
  padding: 5px 0;
  position: relative;
}

.sidebar a:hover {
  color: #4f46ff;
  transform: translateX(5px);
}

.sidebar a.active {
  color: #4f46ff;
  font-weight: 600;
}

.sidebar a.active::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 15px;
  background: #4f46ff;
  border-radius: 3px;
}

.side-note {
  margin-top: 30px;
  background: linear-gradient(135deg, #f8f7ff, #fafbff);
  border-radius: 15px;
  padding: 18px;
  border-left: 3px solid #4f46ff;
}

.side-note i {
  font-size: 24px;
  color: #4f46ff;
  margin-bottom: 10px;
}

.side-note p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* Policy Content */
.policy-content {
  background: white;
  border: 1px solid #ececf8;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.policy-card {
  display: flex;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid #edf0f7;
  transition: all 0.3s ease;
}

.policy-card:hover {
  transform: translateX(5px);
  background: linear-gradient(135deg, #ffffff, #fafbff);
  border-radius: 16px;
  padding-left: 10px;
}

.policy-card:last-child {
  border-bottom: none;
}

.card-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #efeeff, #e8e6ff);
  color: #4f46ff;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  flex-shrink: 0;
}

.policy-card h3 {
  font-size: 18px;
  color: #081028;
  margin-bottom: 8px;
}

.policy-card p {
  color: #667085;
  line-height: 1.8;
  font-size: 15px;
}

.policy-card a {
  color: #4f46ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.policy-card a:hover {
  color: #4338ff;
  text-decoration: underline;
}

/* Privacy CTA */
.privacy-cta {
  margin-top: 40px;
  background: linear-gradient(135deg, #f8f7ff, #fafbff);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.left {
  display: flex;
  gap: 20px;
  align-items: center;
}

.question-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6b5cff, #4338ff);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  font-weight: bold;
}

.left h3 {
  font-size: 20px;
  color: #081028;
  margin-bottom: 5px;
}

.left p {
  color: #667085;
}

.cta-link {
  text-decoration: none;
}

.cta-btn {
  border: none;
  background: linear-gradient(135deg, #6b5cff, #4338ff);
  color: white;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(107, 92, 255, 0.3);
}

/* ========== FOOTER ========== */
.footer {
  background: #1a1a2e;
  color: #cbd5e1;
  margin-top: 80px;
  padding: 50px 5% 30px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-logo i {
  font-size: 28px;
  color: #4f46ff;
}

.footer-logo h3 {
  color: white;
  font-size: 22px;
  margin: 0;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-section h3 {
  color: white;
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #4f46ff;
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  color: #cbd5e1;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #4f46ff;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #334155;
  font-size: 13px;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
  .navbar {
    padding: 0 28px;
  }

  .nav-menu {
    gap: 10px;
  }

  .nav-menu li a {
    padding: 10px 12px;
    font-size: 14px;
  }

  .hero h1 {
    font-size: 52px;
  }
  
  .shield {
    width: 220px;
    height: 220px;
    font-size: 90px;
  }
}

@media (max-width: 992px) {
  .navbar {
    height: 76px;
    padding: 0 20px;
    flex-direction: row;
  }

  .logo h2 {
    font-size: 21px;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 21px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    padding: 0 20px;
    border-bottom: 1px solid #ececf8;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.12);
    transition: all 0.35s ease;
  }

  .nav-toggle:checked ~ .nav-menu {
    max-height: 80vh;
    visibility: visible;
    opacity: 1;
    padding: 16px 20px 22px;
  }

  .nav-menu li a {
    text-align: center;
    padding: 13px 15px;
    border-radius: 12px;
  }

  .nav-toggle:checked + .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .hero p {
    margin: 0 auto;
  }
  
  .updated {
    justify-content: center;
  }
  
  .policy-container {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    position: relative;
    top: 0;
  }
  
  .sidebar ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .sidebar li {
    margin-bottom: 0;
  }
  
  .sidebar a {
    padding: 5px 12px;
    background: #f8f9ff;
    border-radius: 20px;
    font-size: 12px;
  }
  
  .sidebar a.active::before {
    display: none;
  }
  
  .privacy-cta {
    flex-direction: column;
    text-align: center;
  }
  
  .left {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    width: 95%;
    margin: 40px auto;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .shield {
    width: 180px;
    height: 180px;
    font-size: 70px;
  }
  
  .secure-card {
    right: -20px;
    bottom: -10px;
    padding: 12px 18px;
  }
  
  .policy-container {
    width: 95%;
  }
  
  .policy-content {
    padding: 20px;
  }
  
  .policy-card {
    flex-direction: column;
    text-align: center;
  }
  
  .card-icon {
    margin: 0 auto;
  }
  
  .privacy-cta {
    padding: 25px;
  }
  
  .question-icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }
  
  .left h3 {
    font-size: 18px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-section a:hover {
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0 14px;
  }

  .logo {
    gap: 10px;
  }

  .logo h2 {
    font-size: 19px;
  }

  .hero h1 {
    font-size: 28px;
  }
  
  .badge {
    font-size: 11px;
  }
  
  .shield {
    width: 150px;
    height: 150px;
    font-size: 55px;
  }
  
  .secure-card {
    padding: 10px 14px;
  }
  
  .secure-card i {
    font-size: 20px;
  }
  
  .secure-card h4 {
    font-size: 12px;
  }
  
  .secure-card p {
    font-size: 10px;
  }
  
  .policy-card h3 {
    font-size: 16px;
  }
  
  .policy-card p {
    font-size: 14px;
  }
  
  .cta-btn {
    width: 100%;
  }
}

/* ========== PRINT STYLES ========== */
@media print {
  .navbar,
  .footer,
  .sidebar,
  .privacy-cta,
  .skip-link,
  .hero-image {
    display: none;
  }
  
  .policy-content {
    padding: 0;
    box-shadow: none;
    border: none;
  }
  
  .policy-card {
    break-inside: avoid;
    page-break-inside: avoid;
  }
  
  body {
    background: white;
  }
  
  .hero {
    margin: 20px auto;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .policy-container {
    width: 100%;
  }
}

/* ========== SELECTION COLOR ========== */
::selection {
  background: #4f46ff;
  color: white;
}

::-moz-selection {
  background: #4f46ff;
  color: white;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.policy-card {
  animation: fadeIn 0.3s ease forwards;
}

.policy-card:nth-child(1) { animation-delay: 0.05s; }
.policy-card:nth-child(2) { animation-delay: 0.1s; }
.policy-card:nth-child(3) { animation-delay: 0.15s; }
.policy-card:nth-child(4) { animation-delay: 0.2s; }
.policy-card:nth-child(5) { animation-delay: 0.25s; }
.policy-card:nth-child(6) { animation-delay: 0.3s; }
.policy-card:nth-child(7) { animation-delay: 0.35s; }
.policy-card:nth-child(8) { animation-delay: 0.4s; }
.policy-card:nth-child(9) { animation-delay: 0.45s; }