/* ---------------------------------
   PAGE POLITIQUE DE CONFIDENTIALITÉ - ULTRA PREMIUM
   VERSION FINALE - Desktop + Mobile corrigés
---------------------------------- */

/* ANIMATIONS */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Hero Section */
.privacy-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 450px;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
}

.privacy-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
  background-size: cover;
  background-position: center;
}

.privacy-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(224, 185, 74, 0.08), transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(224, 185, 74, 0.06), transparent 50%);
}

.privacy-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(13, 13, 13, 0.85) 0%,
    rgba(13, 13, 13, 0.7) 50%,
    rgba(13, 13, 13, 0.85) 100%
  );
  z-index: 1;
}

.privacy-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

.privacy-hero-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e0b94a;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(224, 185, 74, 0.5);
  animation: fadeInUp 0.8s ease forwards 0.2s;
  opacity: 0;
}

.privacy-hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f5f5f5;
  margin-bottom: 1.2rem;
  line-height: 1.1;
  background: linear-gradient(135deg, #f5f5f5, #e0b94a, #f5f5f5);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease forwards 0.4s, shimmer 8s ease-in-out infinite;
  opacity: 0;
}

.privacy-hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  letter-spacing: 0.5px;
  color: #dcdcdc;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease forwards 0.6s;
  opacity: 0;
}

/* Section contenu principal */
.privacy-content-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
  position: relative;
}

.privacy-content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224, 185, 74, 0.3), transparent);
  box-shadow: 0 0 20px rgba(224, 185, 74, 0.3);
}

.privacy-content-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

/* Sidebar navigation */
.privacy-sidebar {
  position: sticky;
  top: 100px;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.8), rgba(13, 13, 13, 0.9));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(224, 185, 74, 0.2);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(224, 185, 74, 0.1),
    inset 0 1px 0 rgba(224, 185, 74, 0.1);
}

.privacy-nav-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e0b94a;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px rgba(224, 185, 74, 0.4);
}

.privacy-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy-nav-link {
  display: block;
  padding: 0.9rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: #c5c5c5;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.privacy-nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  width: 3px;
  height: 60%;
  background: #e0b94a;
  border-radius: 0 3px 3px 0;
  transition: transform 0.3s ease;
  transform-origin: left;
  box-shadow: 
    0 0 8px rgba(224, 185, 74, 0.8),
    0 0 15px rgba(224, 185, 74, 0.5);
}

@media (min-width: 1025px) {
  .privacy-nav-link:hover,
  .privacy-nav-link.active {
    color: #e0b94a;
    background: rgba(224, 185, 74, 0.08);
    text-shadow: 0 0 10px rgba(224, 185, 74, 0.4);
    transform: translateX(5px);
  }

  .privacy-nav-link:hover::before,
  .privacy-nav-link.active::before {
    transform: translateY(-50%) scaleX(1);
  }
}

/* Contenu principal */
.privacy-main-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  min-width: 0;
}

.privacy-section {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.6), rgba(13, 13, 13, 0.8));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(224, 185, 74, 0.15);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(224, 185, 74, 0.05),
    inset 0 1px 0 rgba(224, 185, 74, 0.08);
  transition: all 0.3s ease;
  scroll-margin-top: 100px;
}

@media (min-width: 1025px) {
  .privacy-section:hover {
    border-color: rgba(224, 185, 74, 0.25);
    box-shadow: 
      0 15px 50px rgba(0, 0, 0, 0.5),
      0 0 35px rgba(224, 185, 74, 0.1),
      inset 0 1px 0 rgba(224, 185, 74, 0.12);
  }
}

.privacy-section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(224, 185, 74, 0.15);
}

.privacy-icon-wrapper {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(224, 185, 74, 0.15), rgba(224, 185, 74, 0.08));
  border: 1px solid rgba(224, 185, 74, 0.3);
  border-radius: 14px;
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(224, 185, 74, 0.15),
    inset 0 1px 0 rgba(224, 185, 74, 0.2);
}

.privacy-icon-wrapper svg {
  color: #e0b94a;
  filter: drop-shadow(0 0 10px rgba(224, 185, 74, 0.5));
}

.privacy-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #f5f5f5;
  letter-spacing: 1px;
  word-wrap: break-word;
}

.privacy-section-content {
  font-size: 1rem;
  line-height: 1.9;
  color: #c5c5c5;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.privacy-section-content * {
  max-width: 100%;
}

.privacy-section-content p {
  margin-bottom: 1.2rem;
}

.privacy-section-content strong {
  color: #e0b94a;
  font-weight: 600;
}

.privacy-section-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #f5f5f5;
  margin: 2.5rem 0 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(224, 185, 74, 0.1);
}

.privacy-section-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f5f5f5;
  margin: 1.5rem 0 0.8rem;
}

.privacy-section-content ul {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.privacy-section-content ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.9rem;
  line-height: 1.8;
}

.privacy-section-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 8px;
  height: 8px;
  background: #e0b94a;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(224, 185, 74, 0.6);
}

.privacy-section-content a {
  color: #e0b94a;
  text-decoration: underline;
  transition: all 0.3s ease;
  word-break: break-all;
}

@media (min-width: 1025px) {
  .privacy-section-content a:hover {
    color: #f4d56f;
    text-shadow: 0 0 10px rgba(224, 185, 74, 0.5);
  }
}

/* Notes */
.privacy-note,
.privacy-note-small {
  display: block;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(224, 185, 74, 0.08);
  border-left: 3px solid #e0b94a;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #dcdcdc;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.privacy-note-small {
  padding: 0.8rem 1.2rem;
  margin: 1rem 0;
  font-size: 0.9rem;
}

/* Highlight box */
.privacy-highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  margin: 2rem 0;
  background: linear-gradient(135deg, rgba(224, 185, 74, 0.12), rgba(224, 185, 74, 0.06));
  border: 1px solid rgba(224, 185, 74, 0.3);
  border-radius: 14px;
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.3),
    0 0 25px rgba(224, 185, 74, 0.1),
    inset 0 1px 0 rgba(224, 185, 74, 0.15);
}

.privacy-highlight-box svg {
  flex-shrink: 0;
  color: #e0b94a;
  filter: drop-shadow(0 0 10px rgba(224, 185, 74, 0.5));
}

.privacy-highlight-box strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: #e0b94a;
}

.privacy-highlight-box p {
  margin: 0;
  color: #dcdcdc;
}

/* Box d'info */
.privacy-info-box {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  margin: 2rem 0;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.12), rgba(33, 150, 243, 0.06));
  border: 1px solid rgba(33, 150, 243, 0.3);
  border-radius: 14px;
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(33, 150, 243, 0.15);
}

.privacy-info-box svg {
  flex-shrink: 0;
  color: #2196f3;
  filter: drop-shadow(0 0 10px rgba(33, 150, 243, 0.5));
}

.privacy-info-box strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: #2196f3;
}

.privacy-info-box p {
  margin: 0;
  color: #dcdcdc;
}

/* Cartes de finalités */
.privacy-purpose-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  margin: 1.5rem 0;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.6), rgba(13, 13, 13, 0.8));
  border: 1px solid rgba(224, 185, 74, 0.15);
  border-radius: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1025px) {
  .privacy-purpose-card:hover {
    border-color: rgba(224, 185, 74, 0.3);
    transform: translateY(-3px);
    box-shadow: 
      0 8px 30px rgba(0, 0, 0, 0.4),
      0 0 25px rgba(224, 185, 74, 0.1);
  }
}

.purpose-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(224, 185, 74, 0.15), rgba(224, 185, 74, 0.08));
  border: 1px solid rgba(224, 185, 74, 0.2);
  border-radius: 12px;
}

.purpose-icon svg {
  color: #e0b94a;
  filter: drop-shadow(0 0 8px rgba(224, 185, 74, 0.4));
}

.purpose-content h4 {
  margin: 0 0 0.8rem 0;
  font-size: 1.1rem;
  color: #f5f5f5;
}

.purpose-content p {
  margin: 0;
  color: #c5c5c5;
  line-height: 1.7;
}

/* Cartes de droits RGPD */
.privacy-right-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  margin: 1.5rem 0;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.6), rgba(13, 13, 13, 0.8));
  border: 1px solid rgba(224, 185, 74, 0.15);
  border-radius: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1025px) {
  .privacy-right-card:hover {
    border-color: rgba(224, 185, 74, 0.3);
    transform: translateY(-3px);
    box-shadow: 
      0 8px 30px rgba(0, 0, 0, 0.4),
      0 0 25px rgba(224, 185, 74, 0.1);
  }
}

.right-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(224, 185, 74, 0.2), rgba(224, 185, 74, 0.1));
  border: 2px solid rgba(224, 185, 74, 0.4);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  color: #e0b94a;
  box-shadow: 
    0 0 20px rgba(224, 185, 74, 0.3),
    inset 0 0 15px rgba(224, 185, 74, 0.1);
}

.right-content h4 {
  margin: 0 0 0.8rem 0;
  font-size: 1.1rem;
  color: #f5f5f5;
}

.right-content p {
  margin: 0 0 0.5rem 0;
  color: #c5c5c5;
  line-height: 1.7;
}

/* Cartes cookies */
.privacy-cookie-card {
  margin: 2rem 0;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.6), rgba(13, 13, 13, 0.8));
  border: 1px solid rgba(224, 185, 74, 0.15);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1025px) {
  .privacy-cookie-card:hover {
    border-color: rgba(224, 185, 74, 0.3);
    box-shadow: 
      0 8px 30px rgba(0, 0, 0, 0.4),
      0 0 25px rgba(224, 185, 74, 0.1);
  }
}

.cookie-type {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 2rem 2rem 0 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cookie-type.essential {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(76, 175, 80, 0.1));
  color: #4caf50;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.cookie-type.analytics {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.2), rgba(33, 150, 243, 0.1));
  color: #2196f3;
  border: 1px solid rgba(33, 150, 243, 0.3);
}

.cookie-type.marketing {
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.2), rgba(255, 152, 0, 0.1));
  color: #ff9800;
  border: 1px solid rgba(255, 152, 0, 0.3);
}

.cookie-content {
  padding: 1.5rem 2rem 2rem;
}

.cookie-content h4 {
  margin: 0 0 1rem 0;
  font-size: 1.2rem;
  color: #f5f5f5;
}

.cookie-content p {
  margin: 0 0 1rem 0;
  color: #c5c5c5;
  line-height: 1.7;
}

.cookie-content ul {
  margin: 1rem 0;
}

.cookie-duration,
.cookie-legal {
  display: block;
  margin-top: 1rem;
  padding: 0.8rem 1.2rem;
  background: rgba(224, 185, 74, 0.05);
  border-left: 3px solid #e0b94a;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #dcdcdc;
}

/* Cards de conservation */
.privacy-conservation-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.conservation-item {
  padding: 1.8rem;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.6), rgba(13, 13, 13, 0.8));
  border: 1px solid rgba(224, 185, 74, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1025px) {
  .conservation-item:hover {
    border-color: rgba(224, 185, 74, 0.3);
    transform: translateX(5px);
    box-shadow: 
      0 8px 30px rgba(0, 0, 0, 0.4),
      0 0 25px rgba(224, 185, 74, 0.1);
  }
}

.conservation-type {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.conservation-type strong {
  font-size: 1.05rem;
  color: #f5f5f5;
}

.conservation-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(224, 185, 74, 0.15), rgba(224, 185, 74, 0.08));
  border: 1px solid rgba(224, 185, 74, 0.3);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #e0b94a;
  width: fit-content;
  max-width: 100%;
  word-wrap: break-word;
}

.conservation-legal {
  font-size: 0.9rem;
  color: #c5c5c5;
  margin: 0;
  padding-left: 1rem;
  border-left: 2px solid rgba(224, 185, 74, 0.3);
}

/* Grille de contact */
.privacy-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.privacy-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.8rem;
  background: linear-gradient(135deg, rgba(224, 185, 74, 0.08), rgba(224, 185, 74, 0.04));
  border: 1px solid rgba(224, 185, 74, 0.2);
  border-radius: 14px;
  transition: all 0.3s ease;
  box-shadow: 
    0 5px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(224, 185, 74, 0.1);
}

@media (min-width: 1025px) {
  .privacy-contact-card:hover {
    background: linear-gradient(135deg, rgba(224, 185, 74, 0.12), rgba(224, 185, 74, 0.06));
    border-color: rgba(224, 185, 74, 0.35);
    transform: translateY(-3px);
    box-shadow: 
      0 8px 30px rgba(0, 0, 0, 0.4),
      0 0 25px rgba(224, 185, 74, 0.15),
      inset 0 1px 0 rgba(224, 185, 74, 0.15);
  }
}

.privacy-contact-card svg {
  flex-shrink: 0;
  color: #e0b94a;
  filter: drop-shadow(0 0 8px rgba(224, 185, 74, 0.5));
}

.privacy-contact-card strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e0b94a;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.privacy-contact-card p {
  font-size: 0.95rem;
  color: #dcdcdc;
  line-height: 1.6;
  margin: 0;
}

/* Dernière mise à jour */
.privacy-update {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(224, 185, 74, 0.08), rgba(224, 185, 74, 0.04));
  border: 1px solid rgba(224, 185, 74, 0.2);
  border-radius: 14px;
  margin-top: 2rem;
  box-shadow: 
    0 5px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(224, 185, 74, 0.1);
}

.privacy-update svg {
  flex-shrink: 0;
  color: #e0b94a;
  filter: drop-shadow(0 0 8px rgba(224, 185, 74, 0.5));
}

.privacy-update p {
  font-size: 0.95rem;
  color: #c5c5c5;
  font-style: italic;
  margin: 0;
}

/* ---------------------------------
   RESPONSIVE TABLETTES
---------------------------------- */
@media (max-width: 1024px) {
  .privacy-content-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .privacy-sidebar {
    position: static;
    width: 100%;
  }

  .privacy-nav-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .privacy-nav-link {
    padding: 0.8rem 1.5rem;
    text-align: center;
  }

  .privacy-nav-link:hover,
  .privacy-nav-link.active {
    transform: translateY(-2px);
  }

  .privacy-section {
    padding: 2.5rem;
  }

  .privacy-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .privacy-contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------
   RESPONSIVE MOBILE
---------------------------------- */
@media (max-width: 767px) {
  .privacy-hero {
    height: 50vh;
    min-height: 400px;
    margin-top: 60px;
  }

  .privacy-hero-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
  }

  .privacy-hero-title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
    margin-bottom: 1rem;
  }

  .privacy-hero-description {
    font-size: 0.95rem;
  }

  .privacy-content-section {
    padding: 4rem 1rem;
    overflow-x: hidden;
  }

  .privacy-sidebar {
    padding: 1.5rem;
  }

  .privacy-nav-list {
    flex-direction: column;
  }

  .privacy-nav-link {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
  }

  .privacy-main-content {
    overflow: hidden;
  }

  .privacy-section {
    padding: 1.5rem 1rem;
    overflow: hidden;
  }

  .privacy-section-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .privacy-icon-wrapper {
    width: 50px;
    height: 50px;
  }

  .privacy-icon-wrapper svg {
    width: 24px;
    height: 24px;
  }

  .privacy-section-title {
    font-size: 1.5rem;
  }

  .privacy-section-content {
    font-size: 0.9rem;
  }

  .privacy-section-content h3 {
    font-size: 1.1rem;
    margin: 2rem 0 1rem;
  }

  .privacy-section-content ul li {
    padding-left: 1.5rem;
    font-size: 0.9rem;
  }

  .privacy-purpose-card,
  .privacy-right-card {
    flex-direction: column;
    padding: 1.3rem;
  }

  .privacy-highlight-box,
  .privacy-info-box {
    flex-direction: column;
    padding: 1.3rem;
    gap: 1rem;
  }

  .privacy-contact-card {
    flex-direction: column;
    padding: 1.3rem;
  }

  .privacy-contact-grid {
    grid-template-columns: 1fr;
  }

  .privacy-update {
    flex-direction: column;
    text-align: center;
    padding: 1.2rem 1.5rem;
  }

  .conservation-item {
    padding: 1.3rem;
  }

  .conservation-type strong {
    font-size: 0.95rem;
  }

  .conservation-badge {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }

  .conservation-legal {
    font-size: 0.85rem;
    padding-left: 0.8rem;
  }

  .privacy-cookie-card {
    margin: 1.5rem 0;
  }

  .cookie-type {
    margin: 1.5rem 1.5rem 0 1.5rem;
  }

  .cookie-content {
    padding: 1rem 1.5rem 1.5rem;
  }
}

@media (max-width: 375px) {
  .privacy-hero {
    min-height: 350px;
  }

  .privacy-content-section {
    padding: 3rem 0.8rem;
  }

  .privacy-section {
    padding: 1.2rem 0.8rem;
  }

  .privacy-section-title {
    font-size: 1.3rem;
  }

  .privacy-section-content {
    font-size: 0.85rem;
  }
}
