/* Page Politique de confidentialité uniquement.
   Aucun style de la page d'accueil n'est modifié. */

body.privacy-page {
  background: #1a2843;
}

.privacy-page .privacy-header {
  height: auto;
  min-height: 0;
  padding: 28px 0 18px;
  background: #1a2843;
  border: 0;
}

.privacy-page .privacy-header-inner {
  width: min(1200px, calc(100% - 40px));
  min-height: 118px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.privacy-page .privacy-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  text-decoration: none;
}

.privacy-page .privacy-brand img {
  display: block;
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.privacy-page .privacy-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.privacy-page .privacy-contact-button,
.privacy-page .privacy-back-button {
  min-height: 50px;
  padding: 12px 22px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font: 800 14px/1 Montserrat, Arial, sans-serif;
  letter-spacing: .035em;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}

.privacy-page .privacy-contact-button {
  border: 1px solid #2b9fd8;
  background: #2b9fd8;
  color: #fff;
}

.privacy-page .privacy-back-button {
  border: 1px solid #f4e7bb;
  background: #f4e7bb;
  color: #1a2843;
}

.privacy-page .privacy-contact-button:hover,
.privacy-page .privacy-back-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}

.privacy-page .privacy-contact-button:focus-visible,
.privacy-page .privacy-back-button:focus-visible,
.privacy-page .privacy-brand:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

/* Le contenu commence immédiatement dans le même fond bleu :
   aucun bandeau ou bloc visuel séparé. */
.privacy-page .legal-main {
  padding-top: 24px;
}

@media (max-width: 760px) {
  .privacy-page .privacy-header {
    padding: 18px 0 10px;
  }

  .privacy-page .privacy-header-inner {
    width: calc(100% - 28px);
    min-height: 0;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }

  .privacy-page .privacy-brand img {
    width: 118px;
    height: 118px;
  }

  .privacy-page .privacy-actions {
    width: 100%;
    justify-content: center;
    gap: 8px;
  }

  .privacy-page .privacy-contact-button,
  .privacy-page .privacy-back-button {
    min-height: 44px;
    padding: 10px 14px;
    font-size: 12px;
  }

  .privacy-page .legal-main {
    padding-top: 26px;
  }
}

@media (max-width: 420px) {
  .privacy-page .privacy-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .privacy-page .privacy-contact-button,
  .privacy-page .privacy-back-button {
    width: 100%;
    padding-inline: 10px;
  }
}
