/* ========================================
   Data Protection Page - Security Green Theme
   Enhanced Footer Styling
   ======================================== */

/* Data Protection Theme Variables */
.data-protection-theme {
  /* Security Green Color Scheme */
  --protection-primary: #059669;
  --protection-secondary: #10B981;
  --protection-accent: #0891B2;
  --protection-light: #34D399;
  --protection-text: #F0FDF4;
  
  /* Security-focused Gradients */
  --gradient-protection: linear-gradient(135deg, #059669 0%, #10B981 50%, #0891B2 100%);
  --gradient-protection-accent: linear-gradient(120deg, #10B981 0%, #34D399 50%, #0891B2 100%);
  --gradient-protection-glass: linear-gradient(135deg, rgba(52, 211, 153, 0.1) 0%, rgba(52, 211, 153, 0.05) 100%);
}

/* Data Protection Footer Styling */
.data-protection-theme .footer {
  background: var(--gradient-protection);
  position: relative;
  overflow: hidden;
}

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

.data-protection-theme .footer .container {
  position: relative;
  z-index: 1;
}

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

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

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

/* Footer Sections with Security Shield Design */
.data-protection-theme .footer-section {
  background: rgba(5, 150, 105, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: 14px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 2px 10px rgba(5, 150, 105, 0.1);
}

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

.data-protection-theme .footer-section:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 15px 40px rgba(5, 150, 105, 0.3),
    0 6px 25px rgba(16, 185, 129, 0.2);
  border-color: rgba(52, 211, 153, 0.4);
}

.data-protection-theme .footer-section:hover::before {
  opacity: 1;
}

/* Company Section - Protected Brand Area */
.data-protection-theme .footer-section:first-child {
  background: rgba(5, 150, 105, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.25);
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.15);
}

.data-protection-theme .footer-section h4,
.data-protection-theme .footer-section h3 {
  background: var(--gradient-protection-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;
}

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

.data-protection-theme .footer-section p {
  color: rgba(240, 253, 244, 0.9);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* Security Contact Icons with Protection Theme */
.data-protection-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 Protection Theme */
.data-protection-theme .contact-icon.email-icon::before {
  content: '';
  width: 16px;
  height: 12px;
  border: 2px solid var(--protection-light);
  border-radius: 2px;
  position: relative;
  background: transparent;
  box-shadow: 0 0 4px rgba(52, 211, 153, 0.3);
}

.data-protection-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(--protection-light);
  filter: drop-shadow(0 0 2px rgba(52, 211, 153, 0.4));
}

/* Phone Icon with Protection Theme */
.data-protection-theme .contact-icon.phone-icon::before {
  content: '';
  width: 12px;
  height: 16px;
  border: 2px solid var(--protection-light);
  border-radius: 3px;
  position: relative;
  background: transparent;
  box-shadow: 0 0 4px rgba(52, 211, 153, 0.3);
}

.data-protection-theme .contact-icon.phone-icon::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 2px;
  background: var(--protection-light);
  border-radius: 1px;
  box-shadow: 0 0 2px rgba(52, 211, 153, 0.4);
}

/* Location Icon with Protection Theme */
.data-protection-theme .contact-icon.location-icon::before {
  content: '';
  width: 12px;
  height: 16px;
  background: var(--protection-light);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: relative;
  box-shadow: 0 0 6px rgba(52, 211, 153, 0.4);
}

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

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

.data-protection-theme .contact-info p {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: rgba(240, 253, 244, 0.95);
  font-size: 0.95rem;
}

.data-protection-theme .contact-mono {
  font-family: var(--font-mono);
  font-size: 0.9em;
  color: var(--protection-light);
  font-weight: 500;
  text-shadow: 0 0 8px rgba(52, 211, 153, 0.3);
}

/* Footer Tech Badge - Security Focused */
.data-protection-theme .footer-tech-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.2rem;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--protection-light);
  margin-top: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.data-protection-theme .footer-tech-badge:hover {
  background: rgba(52, 211, 153, 0.15);
  border-color: rgba(52, 211, 153, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.3);
}

.data-protection-theme .footer-tech-badge::before {
  content: '🛡️';
  margin-right: 0.5rem;
  font-size: 1.1em;
}

/* Footer Links with Security Theme */
.data-protection-theme .footer-links {
  list-style: none;
  padding: 0;
}

.data-protection-theme .footer-links li {
  margin-bottom: 0.75rem;
}

.data-protection-theme .footer-links a {
  color: rgba(240, 253, 244, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
  border-radius: 4px;
}

.data-protection-theme .footer-links a::before {
  content: '';
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 3px;
  background: var(--gradient-protection-accent);
  transition: width 0.3s ease;
  border-radius: 2px;
  box-shadow: 0 0 4px rgba(52, 211, 153, 0.5);
}

.data-protection-theme .footer-links a:hover {
  color: var(--protection-light);
  padding-left: 25px;
  background: rgba(16, 185, 129, 0.1);
  padding-right: 8px;
  padding-top: 4px;
  padding-bottom: 4px;
  text-shadow: 0 0 4px rgba(52, 211, 153, 0.3);
}

.data-protection-theme .footer-links a:hover::before {
  width: 15px;
}

/* Security-specific Link Styling */
.data-protection-theme .footer-links a[href*="data"]:hover,
.data-protection-theme .footer-links a[href*="privacy"]:hover,
.data-protection-theme .footer-links a[href*="security"]:hover {
  color: #6EE7B7;
  background: rgba(110, 231, 183, 0.1);
}

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

.data-protection-theme .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: 8px;
  color: rgba(240, 253, 244, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.15);
}

.data-protection-theme .footer-social a:hover {
  background: rgba(52, 211, 153, 0.2);
  border-color: rgba(52, 211, 153, 0.4);
  color: var(--protection-light);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.3);
}

/* Footer Bottom Section */
.data-protection-theme .footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(52, 211, 153, 0.2);
  position: relative;
}

.data-protection-theme .footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: var(--gradient-protection-accent);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.4);
}

.data-protection-theme .footer-bottom p {
  color: rgba(240, 253, 244, 0.8);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

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

/* Replace generic tagline with Security theme tagline */
.data-protection-theme .footer-bottom p:last-child::after {
  content: 'Securing Your Data, Building Trust 🛡️';
  display: block;
}

.data-protection-theme .footer-bottom p:last-child {
  text-indent: -9999px;
  position: relative;
}

.data-protection-theme .footer-bottom p:last-child::after {
  text-indent: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-shadow: 0 0 6px rgba(52, 211, 153, 0.3);
}

/* Security Shield Animation */
@keyframes securityPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 10px rgba(52, 211, 153, 0);
  }
}

.data-protection-theme .footer-tech-badge {
  animation: securityPulse 3s infinite;
}

/* Enhanced Security Glow */
@keyframes securityGlow {
  0%, 100% { 
    box-shadow: 
      0 2px 8px rgba(5, 150, 105, 0.2),
      0 0 20px rgba(52, 211, 153, 0.1);
  }
  50% { 
    box-shadow: 
      0 6px 20px rgba(5, 150, 105, 0.3),
      0 0 30px rgba(52, 211, 153, 0.3);
  }
}

.data-protection-theme .footer-section {
  animation: securityGlow 4s ease-in-out infinite;
}

/* Enhanced Accessibility */
.data-protection-theme .footer a:focus {
  outline: 2px solid var(--protection-light);
  outline-offset: 2px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.5);
}

/* ========================================
   Hero Section - GDPR Security Premium Styling
   ======================================== */

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

.data-protection-theme .hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(52, 211, 153, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(5, 150, 105, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, rgba(5, 150, 105, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%);
  pointer-events: none;
}

.data-protection-theme .hero .container {
  position: relative;
  z-index: 1;
}

.data-protection-theme .hero-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.data-protection-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;
}

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

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

.data-protection-theme .policy-effective,
.data-protection-theme .policy-updated {
  background: rgba(52, 211, 153, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--text-sm);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.data-protection-theme .gdpr-shield {
  position: absolute;
  top: 45%;
  right: 8%;
  transform: translateY(-50%);
  opacity: 0.4;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.data-protection-theme .gdpr-shield::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 120px;
  background: rgba(52, 211, 153, 0.15);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  border: 2px solid rgba(52, 211, 153, 0.3);
}

.data-protection-theme .gdpr-shield::after {
  content: 'GDPR';
  position: absolute;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(52, 211, 153, 0.8);
  letter-spacing: 2px;
  z-index: 1;
}

.data-protection-theme .shield-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: protectionGlow 5s ease-in-out infinite alternate;
}

@keyframes protectionGlow {
  0% { opacity: 0.4; transform: scale(0.9); }
  100% { opacity: 0.7; transform: scale(1.2); }
}

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

.data-protection-theme .highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(5, 150, 105, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: 20px;
  padding: 0.75rem 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--text-sm);
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.data-protection-theme .highlight-icon {
  width: 6px;
  height: 6px;
  background: var(--protection-light);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 4px rgba(52, 211, 153, 0.6);
}

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

.data-protection-theme .security-node {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(52, 211, 153, 0.7);
  border-radius: 50%;
  animation: securityScan 15s linear infinite;
  box-shadow: 0 0 6px rgba(52, 211, 153, 0.8);
}

.data-protection-theme .security-node:nth-child(1) {
  top: 20%;
  left: 12%;
  animation-delay: -1s;
}

.data-protection-theme .security-node:nth-child(2) {
  top: 70%;
  left: 20%;
  animation-delay: -4s;
}

.data-protection-theme .security-node:nth-child(3) {
  top: 40%;
  right: 18%;
  animation-delay: -7s;
}

.data-protection-theme .security-node:nth-child(4) {
  bottom: 35%;
  right: 28%;
  animation-delay: -2s;
}

.data-protection-theme .security-node:nth-child(5) {
  bottom: 15%;
  left: 35%;
  animation-delay: -5s;
}

@keyframes securityScan {
  0%, 100% { 
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 0.7;
    box-shadow: 0 0 6px rgba(52, 211, 153, 0.8);
  }
  25% { 
    transform: translateY(-20px) translateX(10px) scale(1.5);
    opacity: 1;
    box-shadow: 0 0 12px rgba(52, 211, 153, 1);
  }
  50% { 
    transform: translateY(-8px) translateX(-12px) scale(1);
    opacity: 0.6;
    box-shadow: 0 0 8px rgba(52, 211, 153, 0.6);
  }
  75% { 
    transform: translateY(-25px) translateX(5px) scale(1.3);
    opacity: 0.9;
    box-shadow: 0 0 10px rgba(52, 211, 153, 0.9);
  }
}

/* ========================================
   Content Section - GDPR Security Guide
   ======================================== */

.data-protection-theme .policy-content {
  background: linear-gradient(180deg, rgba(5, 150, 105, 0.03) 0%, rgba(15, 23, 42, 0.01) 100%);
  padding: var(--space-5xl) 0;
}

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

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

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

.data-protection-theme .toc-card {
  background: rgba(5, 150, 105, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(52, 211, 153, 0.15);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(5, 150, 105, 0.15);
}

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

.data-protection-theme .toc-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gradient-protection-accent);
  box-shadow: 0 0 4px rgba(52, 211, 153, 0.5);
}

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

.data-protection-theme .toc-link {
  color: var(--protection-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;
  position: relative;
}

.data-protection-theme .toc-link::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--protection-accent);
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s ease;
  box-shadow: 0 0 3px rgba(52, 211, 153, 0.4);
}

.data-protection-theme .toc-link:hover {
  background: rgba(5, 150, 105, 0.08);
  border-left-color: var(--protection-accent);
  transform: translateX(5px);
  color: var(--protection-primary);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.15);
}

.data-protection-theme .toc-link:hover::before {
  opacity: 1;
  transform: translateY(-50%) scale(1.5);
  box-shadow: 0 0 6px rgba(52, 211, 153, 0.8);
}

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

.data-protection-theme .policy-intro {
  background: rgba(5, 150, 105, 0.04);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(52, 211, 153, 0.15);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.data-protection-theme .policy-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-protection-accent);
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.5);
}

.data-protection-theme .policy-intro::after {
  content: 'SECURE';
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(52, 211, 153, 0.3);
  letter-spacing: 1px;
  font-family: var(--font-display);
}

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

.data-protection-theme .policy-highlight {
  background: rgba(52, 211, 153, 0.06);
  border: 1px solid rgba(52, 211, 153, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
}

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

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

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

.data-protection-theme .policy-highlight li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  background: var(--protection-accent);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 4px rgba(52, 211, 153, 0.6);
}

.data-protection-theme .policy-section {
  background: rgba(5, 150, 105, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(52, 211, 153, 0.12);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  position: relative;
}

.data-protection-theme .policy-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.08) 0%, transparent 70%);
  border-radius: 0 16px 0 80px;
  pointer-events: none;
}

.data-protection-theme .policy-section:hover {
  border-color: rgba(52, 211, 153, 0.2);
  box-shadow: 
    0 10px 40px rgba(5, 150, 105, 0.1),
    0 0 20px rgba(52, 211, 153, 0.1);
  transform: translateY(-2px);
}

.data-protection-theme .section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--protection-primary);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(52, 211, 153, 0.12);
  position: relative;
}

.data-protection-theme .section-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 90px;
  height: 2px;
  background: var(--gradient-protection-accent);
  box-shadow: 0 0 4px rgba(52, 211, 153, 0.5);
}

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

.data-protection-theme .subsection-title::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--protection-accent);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(52, 211, 153, 0.6);
}

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

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

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

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

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

.data-protection-theme .protection-card {
  background: rgba(52, 211, 153, 0.05);
  border: 1px solid rgba(52, 211, 153, 0.15);
  border-radius: 15px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.data-protection-theme .protection-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-protection-accent);
  box-shadow: 0 0 6px rgba(52, 211, 153, 0.4);
}

.data-protection-theme .protection-card:hover {
  background: rgba(52, 211, 153, 0.08);
  border-color: rgba(52, 211, 153, 0.25);
  transform: translateY(-4px);
  box-shadow: 
    0 12px 30px rgba(5, 150, 105, 0.15),
    0 0 20px rgba(52, 211, 153, 0.2);
}

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

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

.data-protection-theme .gdpr-principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.data-protection-theme .principle-card {
  background: rgba(5, 150, 105, 0.04);
  border: 1px solid rgba(52, 211, 153, 0.15);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.data-protection-theme .principle-card::after {
  content: '';
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 12px;
  height: 12px;
  background: var(--protection-accent);
  border-radius: 50%;
  opacity: 0.3;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.4);
}

.data-protection-theme .principle-card:hover {
  background: rgba(5, 150, 105, 0.06);
  border-color: rgba(52, 211, 153, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(5, 150, 105, 0.2);
}

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

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

.data-protection-theme .right-item {
  background: rgba(52, 211, 153, 0.05);
  border: 1px solid rgba(52, 211, 153, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.data-protection-theme .right-item::before {
  content: '';
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 6px;
  height: 6px;
  background: var(--protection-light);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(52, 211, 153, 0.6);
}

.data-protection-theme .right-item:hover {
  background: rgba(52, 211, 153, 0.08);
  border-color: rgba(52, 211, 153, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.15);
}

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

.data-protection-theme .security-measures {
  background: rgba(5, 150, 105, 0.05);
  border: 1px solid rgba(52, 211, 153, 0.15);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
}

.data-protection-theme .security-measures h4 {
  color: var(--protection-primary);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.data-protection-theme .contact-card {
  background: rgba(5, 150, 105, 0.04);
  border: 1px solid rgba(52, 211, 153, 0.15);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .data-protection-theme .hero {
    min-height: 50vh;
    padding: var(--space-3xl) 0;
  }
  
  .data-protection-theme .hero-title {
    font-size: var(--text-4xl);
  }
  
  .data-protection-theme .hero-subtitle {
    font-size: var(--text-lg);
  }
  
  .data-protection-theme .policy-meta {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .data-protection-theme .protection-highlights {
    flex-direction: column;
    gap: 1rem;
  }
  
  .data-protection-theme .gdpr-shield {
    display: none;
  }
  
  .data-protection-theme .policy-intro {
    padding: 2rem;
  }
  
  .data-protection-theme .policy-section {
    padding: 1.5rem;
  }
  
  .data-protection-theme .protection-grid,
  .data-protection-theme .gdpr-principles,
  .data-protection-theme .rights-matrix {
    grid-template-columns: 1fr;
  }
}

/* Security Shield Icon Enhancement - No Emojis */
.data-protection-theme .footer-section:first-child::after {
  content: '';
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 28px;
  background: var(--protection-light);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  opacity: 0.6;
  animation: shieldFloat 6s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.4);
}

.data-protection-theme .footer-section:first-child::before {
  content: '';
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 24px;
  background: var(--protection-accent);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  opacity: 0.8;
  z-index: 1;
}

@keyframes shieldFloat {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
    opacity: 0.6; 
  }
  25% { 
    transform: translateY(-3px) rotate(-2deg); 
    opacity: 0.8; 
  }
  50% { 
    transform: translateY(0px) rotate(0deg); 
    opacity: 0.6; 
  }
  75% { 
    transform: translateY(-2px) rotate(1deg); 
    opacity: 0.7; 
  }
}

/* GDPR Compliance Badge - Text Only */
.data-protection-theme .footer-section:first-child .footer-title::after {
  content: 'GDPR';
  position: absolute;
  top: -8px;
  right: -40px;
  background: rgba(52, 211, 153, 0.2);
  border: 1px solid rgba(52, 211, 153, 0.4);
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--protection-light);
  opacity: 0.8;
}

/* Security Border Enhancement */
.data-protection-theme .footer-section:hover {
  border-color: rgba(52, 211, 153, 0.5);
  background: rgba(5, 150, 105, 0.15);
}

/* Protection Focus Effect - No Emojis */
.data-protection-theme .footer-section h3::before,
.data-protection-theme .footer-section h4::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--protection-accent);
  border-radius: 2px;
  margin-right: 0.5rem;
  opacity: 0.7;
  box-shadow: 0 0 4px rgba(52, 211, 153, 0.5);
}

/* Secure List Styling - No Emojis */
.data-protection-theme .footer-links li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--protection-light);
  border-radius: 50%;
  margin-right: 0.5rem;
  box-shadow: 0 0 4px rgba(52, 211, 153, 0.4);
}