/* GDPR Page Specific Styles */

.gdpr-main {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  padding: 40px 40px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.gdpr-header {
  text-align: center;
  margin-bottom: 80px;
  padding-top: 60px;
}

.gdpr-title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gdpr-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.4;
}

.gdpr-updated {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.gdpr-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-bottom: 120px;
}

.gdpr-section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gdpr-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.gdpr-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  margin-bottom: 24px;
}

.gdpr-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: left 0.6s ease;
}

.gdpr-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.gdpr-card:hover::before {
  left: 100%;
}

.gdpr-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.gdpr-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.5;
}

.gdpr-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: bold;
}

.gdpr-list li strong {
  color: white;
  font-weight: 600;
}

.rights-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.rights-button {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  display: inline-block;
  backdrop-filter: blur(10px);
}

.rights-button:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

/* GDPR Responsive Design */
@media (max-width: 768px) {
  .gdpr-main {
    padding: 24px 24px 0;
  }
  
  .gdpr-header {
    margin-bottom: 60px;
    padding-top: 40px;
  }
  
  .gdpr-title {
    font-size: clamp(28px, 8vw, 40px);
  }
  
  .gdpr-subtitle {
    font-size: 16px;
  }
  
  .gdpr-content {
    gap: 60px;
    margin-bottom: 80px;
  }
  
  .gdpr-card {
    padding: 24px;
  }
  
  .rights-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .rights-button {
    padding: 12px 16px;
    font-size: 13px;
  }

  .gdpr-card {
    padding: 20px;
  }
}

.highlight-card {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

.contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transition: left 0.8s ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.contact-card:hover::before {
  left: 100%;
}

.contact-details {
  margin-top: 16px;
}

.contact-info {
  margin: 24px 0 32px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info p {
  margin: 8px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.contact-info strong {
  color: white;
  font-weight: 600;
}

.contact-button {
  background: white;
  color: #0a0a0a;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.contact-button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.contact-button.secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.contact-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 600;
}

.contact-link:hover {
  color: white;
  text-decoration: underline;
}

.processing-details {
  margin-top: 16px;
}

.authority-info {
  margin-top: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.authority-info h4 {
  color: white;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.authority-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin: 4px 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .contact-card {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .contact-card {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .gdpr-main {
    padding: 16px 16px 0;
  }
  
  .gdpr-header {
    margin-bottom: 40px;
    padding-top: 24px;
  }
  
  .gdpr-content {
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .gdpr-card {
    padding: 20px;
  }
  
  .gdpr-list li {
    font-size: 13px;
    padding: 6px 0 6px 20px;
  }
  
  .rights-button {
    padding: 12px 16px;
    font-size: 13px;
  }
}