/* ========================================
   Privacy Policy Page - Trust Blue Theme
   Enhanced Footer Styling
   ======================================== */

/* Privacy Policy Theme Variables */
.privacy-policy-theme {
  /* Trust Blue Color Scheme */
  --privacy-primary: #1E293B;
  --privacy-secondary: #475569;
  --privacy-accent: #64748B;
  --privacy-light: #94A3B8;
  --privacy-text: #F8FAFC;
  
  /* Trust-focused Gradients */
  --gradient-privacy: linear-gradient(135deg, #1E293B 0%, #475569 50%, #64748B 100%);
  --gradient-privacy-accent: linear-gradient(120deg, #475569 0%, #64748B 50%, #94A3B8 100%);
  --gradient-privacy-glass: linear-gradient(135deg, rgba(148, 163, 184, 0.1) 0%, rgba(148, 163, 184, 0.05) 100%);
}

/* Privacy Policy Footer Styling */
.privacy-policy-theme .footer {
  background: var(--gradient-privacy);
  position: relative;
  overflow: hidden;
}

.privacy-policy-theme .footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-privacy-glass);
  pointer-events: none;
}

.privacy-policy-theme .footer .container {
  position: relative;
  z-index: 1;
}

/* Trust-focused Grid Layout */
.privacy-policy-theme .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 1024px) {
  .privacy-policy-theme .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .privacy-policy-theme .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
}

/* Footer Sections with Security-inspired Design */
.privacy-policy-theme .footer-section {
  background: rgba(30, 41, 59, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
}

.privacy-policy-theme .footer-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-privacy-glass);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.privacy-policy-theme .footer-section:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 10px 30px rgba(30, 41, 59, 0.3),
    0 4px 15px rgba(148, 163, 184, 0.1);
}

.privacy-policy-theme .footer-section:hover::before {
  opacity: 1;
}

/* Company Section - Main Brand Area */
.privacy-policy-theme .footer-section:first-child {
  background: rgba(30, 41, 59, 0.15);
  border: 1px solid rgba(148, 163, 184, 0.15);
}

.privacy-policy-theme .footer-section h4,
.privacy-policy-theme .footer-section h3 {
  background: var(--gradient-privacy-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
}

.privacy-policy-theme .footer-section h4::after,
.privacy-policy-theme .footer-section h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient-privacy-accent);
  border-radius: 1px;
}

.privacy-policy-theme .footer-section p {
  color: rgba(248, 250, 252, 0.85);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* Professional Contact Icons with Trust Theme */
.privacy-policy-theme .contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 0.75rem;
  position: relative;
  flex-shrink: 0;
}

/* Email Icon with Privacy Theme */
.privacy-policy-theme .contact-icon.email-icon::before {
  content: '';
  width: 16px;
  height: 12px;
  border: 2px solid var(--privacy-light);
  border-radius: 2px;
  position: relative;
  background: transparent;
}

.privacy-policy-theme .contact-icon.email-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--privacy-light);
}

/* Phone Icon with Privacy Theme */
.privacy-policy-theme .contact-icon.phone-icon::before {
  content: '';
  width: 12px;
  height: 16px;
  border: 2px solid var(--privacy-light);
  border-radius: 3px;
  position: relative;
  background: transparent;
}

.privacy-policy-theme .contact-icon.phone-icon::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 1px;
  background: var(--privacy-light);
  border-radius: 1px;
}

/* Location Icon with Privacy Theme */
.privacy-policy-theme .contact-icon.location-icon::before {
  content: '';
  width: 12px;
  height: 16px;
  background: var(--privacy-light);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: relative;
}

.privacy-policy-theme .contact-icon.location-icon::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--privacy-primary);
  border-radius: 50%;
}

/* Contact Information Styling */
.privacy-policy-theme .contact-info {
  margin-bottom: 2rem;
}

.privacy-policy-theme .contact-info p {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: rgba(248, 250, 252, 0.9);
  font-size: 0.95rem;
}

.privacy-policy-theme .contact-mono {
  font-family: var(--font-mono);
  font-size: 0.9em;
  color: var(--privacy-light);
  font-weight: 500;
}

/* Footer Tech Badge - Privacy Focused */
.privacy-policy-theme .footer-tech-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(148, 163, 184, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--privacy-light);
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.privacy-policy-theme .footer-tech-badge:hover {
  background: rgba(148, 163, 184, 0.15);
  border-color: rgba(148, 163, 184, 0.3);
  transform: translateY(-2px);
}

/* Footer Links with Trust Theme */
.privacy-policy-theme .footer-links {
  list-style: none;
  padding: 0;
}

.privacy-policy-theme .footer-links li {
  margin-bottom: 0.75rem;
}

.privacy-policy-theme .footer-links a {
  color: rgba(248, 250, 252, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.privacy-policy-theme .footer-links a::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-privacy-accent);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.privacy-policy-theme .footer-links a:hover {
  color: var(--privacy-light);
  padding-left: 20px;
}

.privacy-policy-theme .footer-links a:hover::before {
  width: 12px;
}

/* Social Media Links with Privacy Theme */
.privacy-policy-theme .footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.privacy-policy-theme .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(148, 163, 184, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  color: rgba(248, 250, 252, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.privacy-policy-theme .footer-social a:hover {
  background: rgba(148, 163, 184, 0.2);
  border-color: rgba(148, 163, 184, 0.4);
  color: var(--privacy-light);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(30, 41, 59, 0.3);
}

/* Footer Bottom Section */
.privacy-policy-theme .footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  position: relative;
}

.privacy-policy-theme .footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--gradient-privacy-accent);
  border-radius: 1px;
}

.privacy-policy-theme .footer-bottom p {
  color: rgba(248, 250, 252, 0.7);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.privacy-policy-theme .footer-bottom p:last-child {
  color: var(--privacy-light);
  font-weight: 500;
  margin-bottom: 0;
}

/* Trust Badge Animation */
@keyframes trustPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(148, 163, 184, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(148, 163, 184, 0);
  }
}

.privacy-policy-theme .footer-tech-badge {
  animation: trustPulse 3s infinite;
}

/* Enhanced Accessibility */
.privacy-policy-theme .footer a:focus {
  outline: 2px solid var(--privacy-light);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ========================================
   Hero Section - Trust Blue Premium Styling
   ======================================== */

.privacy-policy-theme .hero {
  background: var(--gradient-privacy);
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-policy-theme .hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(148, 163, 184, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(100, 116, 139, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, rgba(30, 41, 59, 0.2) 0%, rgba(71, 85, 105, 0.1) 100%);
  pointer-events: none;
}

.privacy-policy-theme .hero .container {
  position: relative;
  z-index: 1;
}

.privacy-policy-theme .hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.privacy-policy-theme .hero-title {
  font-family: var(--font-display);
  font-size: var(--text-6xl);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

.privacy-policy-theme .hero-subtitle {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
  font-weight: 400;
}

.privacy-policy-theme .policy-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.privacy-policy-theme .policy-effective,
.privacy-policy-theme .policy-updated {
  background: rgba(148, 163, 184, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-sm);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.privacy-policy-theme .policy-hero-icon {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  opacity: 0.4;
}

.privacy-policy-theme .privacy-shield {
  width: 120px;
  height: 120px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-policy-theme .privacy-shield::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--gradient-privacy-accent);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  opacity: 0.3;
  animation: shieldPulse 3s ease-in-out infinite;
}

.privacy-policy-theme .shield-icon {
  font-size: 3rem;
  z-index: 1;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.privacy-policy-theme .shield-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(148, 163, 184, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite alternate;
}

@keyframes shieldPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.5; }
}

@keyframes glowPulse {
  0% { opacity: 0.3; transform: scale(1); }
  100% { opacity: 0.6; transform: scale(1.2); }
}

.privacy-policy-theme .privacy-highlights {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.privacy-policy-theme .highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(30, 41, 59, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 20px;
  padding: 0.75rem 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-sm);
  font-weight: 500;
}

.privacy-policy-theme .highlight-icon {
  font-size: 1.2em;
}

.privacy-policy-theme .policy-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.privacy-policy-theme .privacy-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(148, 163, 184, 0.6);
  border-radius: 50%;
  animation: particleFloat 8s linear infinite;
}

.privacy-policy-theme .privacy-particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: -1s;
}

.privacy-policy-theme .privacy-particle:nth-child(2) {
  top: 60%;
  left: 20%;
  animation-delay: -3s;
}

.privacy-policy-theme .privacy-particle:nth-child(3) {
  top: 30%;
  right: 15%;
  animation-delay: -5s;
}

.privacy-policy-theme .privacy-particle:nth-child(4) {
  bottom: 40%;
  right: 25%;
  animation-delay: -2s;
}

.privacy-policy-theme .privacy-particle:nth-child(5) {
  bottom: 20%;
  left: 30%;
  animation-delay: -4s;
}

@keyframes particleFloat {
  0%, 100% { 
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.6;
  }
  25% { 
    transform: translateY(-20px) translateX(10px) rotate(90deg);
    opacity: 1;
  }
  50% { 
    transform: translateY(-10px) translateX(-10px) rotate(180deg);
    opacity: 0.6;
  }
  75% { 
    transform: translateY(-30px) translateX(5px) rotate(270deg);
    opacity: 0.8;
  }
}

/* ========================================
   Content Section - Elegant Cards
   ======================================== */

.privacy-policy-theme .policy-content {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.05) 0%, rgba(15, 23, 42, 0.02) 100%);
  padding: var(--space-5xl) 0;
}

.privacy-policy-theme .policy-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .privacy-policy-theme .policy-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .privacy-policy-theme .policy-toc {
    order: 2;
  }
  
  .privacy-policy-theme .policy-article {
    order: 1;
  }
}

.privacy-policy-theme .policy-toc {
  position: sticky;
  top: 2rem;
}

.privacy-policy-theme .toc-card {
  background: rgba(30, 41, 59, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(30, 41, 59, 0.1);
}

.privacy-policy-theme .toc-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--privacy-secondary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.privacy-policy-theme .toc-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.privacy-policy-theme .toc-link {
  color: var(--privacy-secondary);
  text-decoration: none;
  font-size: var(--text-sm);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  background: transparent;
}

.privacy-policy-theme .toc-link:hover {
  background: rgba(30, 41, 59, 0.1);
  border-left-color: var(--privacy-accent);
  transform: translateX(5px);
  color: var(--privacy-primary);
}

.privacy-policy-theme .policy-article {
  max-width: none;
}

.privacy-policy-theme .policy-intro {
  background: rgba(30, 41, 59, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.privacy-policy-theme .policy-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-privacy-accent);
}

.privacy-policy-theme .policy-lead {
  font-size: var(--text-xl);
  line-height: 1.7;
  color: var(--privacy-primary);
  margin-bottom: 2rem;
  font-weight: 400;
}

.privacy-policy-theme .policy-highlight {
  background: rgba(148, 163, 184, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.privacy-policy-theme .policy-highlight h4 {
  color: var(--privacy-secondary);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: 1rem;
}

.privacy-policy-theme .policy-highlight ul {
  list-style: none;
  padding: 0;
}

.privacy-policy-theme .policy-highlight li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.5rem;
  color: var(--privacy-secondary);
  line-height: 1.6;
}

.privacy-policy-theme .policy-highlight li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  background: var(--privacy-accent);
  border-radius: 50%;
  transform: translateY(-50%);
}

.privacy-policy-theme .policy-section {
  background: rgba(30, 41, 59, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(148, 163, 184, 0.08);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  position: relative;
}

.privacy-policy-theme .policy-section:hover {
  border-color: rgba(148, 163, 184, 0.15);
  box-shadow: 0 10px 40px rgba(30, 41, 59, 0.08);
  transform: translateY(-2px);
}

.privacy-policy-theme .section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--privacy-primary);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(148, 163, 184, 0.1);
  position: relative;
}

.privacy-policy-theme .section-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--gradient-privacy-accent);
}

.privacy-policy-theme .subsection-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--privacy-secondary);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.privacy-policy-theme .policy-section p {
  color: var(--privacy-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: var(--text-base);
}

.privacy-policy-theme .policy-section ul,
.privacy-policy-theme .policy-section ol {
  color: var(--privacy-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.privacy-policy-theme .policy-section ul li {
  margin-bottom: 0.5rem;
  position: relative;
}

.privacy-policy-theme .policy-section strong {
  color: var(--privacy-primary);
  font-weight: 600;
}

/* Specialized Content Cards */
.privacy-policy-theme .purpose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.privacy-policy-theme .purpose-card {
  background: rgba(148, 163, 184, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.privacy-policy-theme .purpose-card:hover {
  background: rgba(148, 163, 184, 0.08);
  border-color: rgba(148, 163, 184, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(30, 41, 59, 0.1);
}

.privacy-policy-theme .purpose-card h4 {
  color: var(--privacy-primary);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: 1rem;
}

.privacy-policy-theme .purpose-card p {
  color: var(--privacy-secondary);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: 0;
}

.privacy-policy-theme .sharing-policy {
  background: linear-gradient(135deg, rgba(148, 163, 184, 0.05) 0%, rgba(100, 116, 139, 0.05) 100%);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}

.privacy-policy-theme .policy-principle {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--privacy-primary);
  margin-bottom: 1rem;
}

.privacy-policy-theme .sharing-scenarios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.privacy-policy-theme .scenario-card {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.privacy-policy-theme .scenario-card:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(30, 41, 59, 0.1);
}

.privacy-policy-theme .scenario-card h4 {
  color: var(--privacy-primary);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: 1rem;
}

.privacy-policy-theme .security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.privacy-policy-theme .security-item {
  background: rgba(30, 41, 59, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.privacy-policy-theme .security-item:hover {
  background: rgba(30, 41, 59, 0.05);
  border-color: rgba(148, 163, 184, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(30, 41, 59, 0.1);
}

.privacy-policy-theme .security-item h4 {
  color: var(--privacy-primary);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: 1rem;
}

.privacy-policy-theme .rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.privacy-policy-theme .right-card {
  background: rgba(148, 163, 184, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.privacy-policy-theme .right-card:hover {
  background: rgba(148, 163, 184, 0.08);
  border-color: rgba(148, 163, 184, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(30, 41, 59, 0.1);
}

.privacy-policy-theme .right-card h4 {
  color: var(--privacy-primary);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: 1rem;
}

.privacy-policy-theme .contact-methods {
  background: rgba(148, 163, 184, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.privacy-policy-theme .contact-methods p {
  margin-bottom: 0.75rem;
}

.privacy-policy-theme .contact-methods strong {
  color: var(--privacy-primary);
}

.privacy-policy-theme .cookie-types,
.privacy-policy-theme .retention-schedule {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.privacy-policy-theme .cookie-category,
.privacy-policy-theme .retention-item {
  background: rgba(148, 163, 184, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.privacy-policy-theme .cookie-category:hover,
.privacy-policy-theme .retention-item:hover {
  background: rgba(148, 163, 184, 0.08);
  border-color: rgba(148, 163, 184, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(30, 41, 59, 0.1);
}

.privacy-policy-theme .cookie-category h4,
.privacy-policy-theme .retention-item h4 {
  color: var(--privacy-primary);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: 1rem;
}

.privacy-policy-theme .contact-card {
  background: rgba(30, 41, 59, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
}

.privacy-policy-theme .contact-card h3,
.privacy-policy-theme .contact-card h4,
.privacy-policy-theme .contact-card h5 {
  color: var(--privacy-primary);
  font-family: var(--font-display);
  margin-bottom: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .privacy-policy-theme .hero {
    min-height: 50vh;
    padding: var(--space-3xl) 0;
  }
  
  .privacy-policy-theme .hero-title {
    font-size: var(--text-4xl);
  }
  
  .privacy-policy-theme .hero-subtitle {
    font-size: var(--text-lg);
  }
  
  .privacy-policy-theme .policy-meta {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .privacy-policy-theme .privacy-highlights {
    flex-direction: column;
    gap: 1rem;
  }
  
  .privacy-policy-theme .policy-hero-icon {
    display: none;
  }
  
  .privacy-policy-theme .policy-intro {
    padding: 2rem;
  }
  
  .privacy-policy-theme .policy-section {
    padding: 1.5rem;
  }
  
  .privacy-policy-theme .purpose-grid,
  .privacy-policy-theme .sharing-scenarios,
  .privacy-policy-theme .security-grid,
  .privacy-policy-theme .rights-grid,
  .privacy-policy-theme .cookie-types,
  .privacy-policy-theme .retention-schedule {
    grid-template-columns: 1fr;
  }
}

/* Security Icon Enhancement - Removed Emoji */
.privacy-policy-theme .footer-section:first-child::after {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 24px;
  height: 24px;
  background: var(--privacy-accent);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  opacity: 0.3;
  animation: securityFloat 4s ease-in-out infinite;
}

.privacy-policy-theme .footer-section:first-child::before {
  content: '';
  position: absolute;
  top: -6px;
  right: -6px;
  width: 16px;
  height: 16px;
  background: var(--privacy-light);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  opacity: 0.6;
  z-index: 1;
}

@keyframes securityFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(5deg); }
}