/* ============================================================
   VARIABLES DE LA CHARTE GRAPHIQUE
   Toutes les couleurs et dimensions réutilisables du site
   ============================================================ */
:root {
  --brown: #a7654d;          /* Brun principal (titres, accents) */
  --brown-dark: #5d3d33;     /* Brun foncé (sous-titres, hover) */
  --brown-soft: #c7a092;     /* Brun adouci (bandes décoratives) */
  --peach: #d8b8aa;          /* Pêche / beige (topbar, fonds) */
  --text: #343039;           /* Texte principal */
  --muted: #735d58;          /* Texte atténué */
  --white: #ffffff;          /* Blanc */
  --max-width: 1030px;       /* Largeur max du contenu */
}

/* ============================================================
   RESET & BASE
   Réinitialisation des styles par défaut du navigateur
   ============================================================ */

* {
  box-sizing: border-box;    /* Inclut padding/borders dans les largeurs */
}

html {
  scroll-behavior: smooth;   /* Animation fluide pour les ancres */
}

body {
  margin: 0;
  color: var(--text);         /* Texte en brun-gris */
  background: var(--white);
  font-family: "Nunito Sans", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.58;
}

img {
  display: block;
  max-width: 100%;           /* Images responsives */
}

a {
  color: inherit;
  text-decoration: none;     /* Liens sans soulignement par défaut */
}

/* ============================================================
   UTILITAIRE : SR-ONLY
   Texte visible uniquement par les lecteurs d'écran (accessibilité)
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   TOPBAR (bande beige fixe en haut)
   Affiche "Vidauban, Var (83)"
   ============================================================ */
.topbar {
  position: sticky;           /* Reste fixe en haut au scroll */
  top: 0;
  z-index: 20;                /* Au-dessus du header */
  background: var(--peach);
  color: var(--brown);
  font-size: 13px;
}

.topbar-inner {
  width: min(var(--max-width), calc(100% - 32px));
  height: 37px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.home-icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ============================================================
   SITE HEADER (logo + navigation)
   Barre sticky sous la topbar (top: 37px = hauteur topbar)
   ============================================================ */
.site-header {
  position: sticky;
  top: 37px;                  /* Collé juste sous la topbar */
  z-index: 10;
  min-height: 91px;
  background: var(--white);
  border-bottom: 1px solid rgba(167, 101, 77, 0.18);
  padding: 0 24px;
}

.site-header {
  display: grid;
  grid-template-columns: minmax(270px, 330px) auto;
  justify-content: center;
  align-items: center;
  column-gap: 36px;
}

/* Logo + nom du cabinet */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-logo {
  width: 67px;
  height: 67px;
  object-fit: contain;
  border-radius: 50%;
}

.brand-text {
  display: grid;
  line-height: 1.1;
  color: var(--brown);
}

.brand-text strong {
  font-size: 20px;
  font-weight: 700;
}

.brand-text span {
  margin-top: 3px;
  color: var(--brown-dark);
  font-size: 13px;
  letter-spacing: 0;
}

/* Menu de navigation principal */
.main-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  color: #1f1c23;
  font-size: 15px;
}

.main-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  transition: color 160ms ease;
}

.main-menu a:hover,
.main-menu a.active {
  color: var(--brown);
}

/* Bouton hamburger (caché sur desktop, visible sur mobile) */
.menu-toggle {
  display: none;
}

/* ============================================================
   SECTION HERO / BIENVENUE
   Bannière d'accueil avec image de fond et titre "La Gestalt-Thérapie"
   ============================================================ */
.hero {
  min-height: 340px;
  scroll-margin-top: 128px;           /* Évite que le titre soit caché par le header sticky */
  background-image: linear-gradient(rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03)), url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  display: grid;
  align-items: end;                   /* Titre placé en bas pour voir les fleurs */
  justify-items: center;
  padding: 40px 24px 50px;
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(46px, 6.2vw, 83px);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
  text-shadow: 5px 6px 6px rgba(74, 57, 51, 0.45);
}

/* ============================================================
   SECTION INTRODUCTION / LA GESTALT
   Présentation de la Gestalt-thérapie (symbole + texte)
   ============================================================ */
.intro-section {
  scroll-margin-top: 128px;
  padding: 30px 24px 50px;
  background: var(--white);
}

.intro-title-wrap {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  text-align: center;
}

.intro-title-wrap h2 {
  margin: 0 0 20px;
  color: #b3867d;
  font-size: clamp(30px, 3.1vw, 42px);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  max-width: 100%;
}

/* Colonnes : symbole (gauche) / texte (droite) */
.intro-content {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.intro-left {
  display: grid;
  justify-items: center;
}

.intro-symbol {
  width: 288px;
  height: 238px;
  object-fit: contain;
  object-position: center;
  margin-top: -8px;
}

/* Liste "outils" sous le symbole */
.tools {
  width: 100%;
  max-width: 560px;
}

.tools p {
  margin: 2px 0 8px;
  color: #0f0d0d;
}

.tools ul {
  margin: 0;
  padding-left: 26px;
  color: var(--brown);
  font-size: 17px;
}

.tools li {
  padding-left: 6px;
  margin: 7px 0;
}

.tools li::marker {
  color: #b56b25;
  font-size: 0.9em;
}

/* Texte de description (colonne droite) */
.intro-text {
  padding-top: 30px;
  color: #4a4650;
  font-size: 17px;
  line-height: 1.7;
}

.intro-text p {
  margin: 0;
}

.intro-text p + p {
  margin-top: 14px;
}

/* ============================================================
   SECTION VOS PRATICIENS
   Cartes des deux thérapeutes (Johann + Isabelle)
   ============================================================ */
.practitioners-section {
  scroll-margin-top: 128px;
  padding: 0 24px 50px;
  background: #d9c8bf;
}

.practitioners-inner {
  width: min(930px, 100%);
  margin: 0 auto;
}

.practitioners-section h2 {
  margin: 0 0 20px;
  color: var(--brown);
  font-size: clamp(34px, 4vw, 45px);
  font-weight: 300;
  line-height: 1.2;
}

/* Grille 2 colonnes pour les deux praticiens */
.practitioners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: stretch;
}

/* Carte d'un praticien */
.practitioner-card {
  display: flex;
  flex-direction: column;
  padding: 24px 20px 32px;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

/* Conteneur du portrait avec forme organique arrondie */
.portrait-wrap {
  position: relative;
  width: min(350px, 100%);
  height: 276px;
  margin: 0 auto 4px;
  display: grid;
  place-items: center;
}

.portrait-wrap::before {
  content: "";
  position: absolute;
  width: 96%;
  height: 76%;
  background: #c57f6e;
  border-radius: 48% 52% 45% 55% / 56% 47% 53% 44%;
  transform: rotate(-3deg);
}

.portrait-wrap img {
  position: relative;
  width: 232px;
  height: 232px;
  object-fit: cover;
  border-radius: 50%;
}

.practitioner-card h3 {
  margin: 4px 0 0;
  color: #1f1c23;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.role {
  margin: 8px 0 2px;
  color: #b17465;
  font-size: 17px;
  font-weight: 600;
  text-align: center;
}

.certification {
  margin: 0 0 24px;
  color: #0f0d0d;
  font-size: 14px;
  line-height: 1.35;
  text-align: center;
  font-weight: 400;
}

/* Bio du praticien (prend l'espace restant dans la carte) */
.practitioner-bio {
  flex: 1;
  color: #252129;
  font-size: 16px;
  line-height: 1.72;
}

.practitioner-bio p {
  margin: 0;
}

.practitioner-bio p + p {
  margin-top: 12px;
}

/* Tarif de la séance */
.practitioner-price {
  margin: 16px 0 12px;
  color: #4d4650;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}

/* Bouton "Prendre rendez-vous" (ouvre la modale) */
.btn-appointment {
  display: block;
  width: 100%;
  padding: 12px 20px;
  border: 0;
  border-radius: 6px;
  background: #b17465;
  color: var(--white);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease;
}

.btn-appointment:hover {
  background: #8f5d4f;
}

/* ============================================================
   SECTION POURQUOI CONSULTER ?
   3 colonnes de raisons avec icônes SVG
   ============================================================ */
.reasons-section {
  scroll-margin-top: 128px;
  background: var(--white);
}

.reasons-intro {
  padding: 60px 24px 42px;
  text-align: center;
}

.reasons-intro h2,
.session-section h2 {
  margin: 0;
  color: #b07868;
  font-size: clamp(34px, 4vw, 43px);
  font-weight: 300;
  line-height: 1.2;
}

.small-divider {
  display: block;
  width: 62px;
  height: 1px;
  margin: 21px auto 18px;
  background: #1f1c23;
}

.reasons-intro p {
  margin: 0;
  color: #4d4650;
  font-size: 19px;
  line-height: 1.65;
}

.reasons-band {
  padding: 25px 24px 20px;
  background: #e0d3cd;
}

.reasons-grid {
  width: min(1150px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 70px;
}

.reason-column {
  display: grid;
  justify-items: center;
  align-content: start;
}

/* Icône SVG au-dessus de chaque colonne */
.reason-icon {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
}

.reason-column ul {
  width: 100%;
  margin: 0;
  padding-left: 27px;
  color: #24212a;
  font-size: 20px;
  line-height: 1.6;
}

.reason-column li {
  margin: 2px 0;
  padding-left: 4px;
}

/* ============================================================
   SECTION LA SÉANCE
   Description + photos des cabinets (Vidauban / Visio)
   ============================================================ */
.session-section {
  scroll-margin-top: 128px;
  padding: 14px 24px 35px;
  background: var(--white);
}

.session-inner {
  width: min(1030px, 100%);
  margin: 0 auto;
}

.session-section h2 {
  margin-bottom: 20px;
}

.session-text {
  color: #514b55;
  font-size: 17px;
  line-height: 1.85;
}

.session-text p {
  margin: 0;
}

.session-text p + p {
  margin-top: 0;
}

/* Galerie d'images (Vidauban + Visio) */
.session-images {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 28px;
}

.session-image-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.session-image-item img,
.session-visio-img {
  width: 100%;
  max-width: 440px;
  height: 310px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.session-label {
  color: var(--brown-dark);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.session-address {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #4d4650;
  font-size: 14px;
  line-height: 1.4;
}

.session-address svg {
  flex-shrink: 0;
  color: var(--brown);
}

/* ============================================================
   ANCIENNE SECTION "EN ATTENTE" (conservée / non utilisée)
   ============================================================ */
.pending-section {
  min-height: 360px;
  padding: 92px 24px;
  text-align: center;
  border-top: 1px solid rgba(167, 101, 77, 0.18);
  background: #fbf8f6;
}

.pending-section:nth-of-type(even) {
  background: var(--white);
}

.pending-section h2 {
  margin: 0 0 10px;
  color: var(--brown);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 300;
}

.pending-section p {
  margin: 0;
  color: var(--muted);
}

/* ============================================================
   CONTACT
   En-tête + portraits des praticiens + carte Google Maps + adresse
   ============================================================ */
.contact-section {
  scroll-margin-top: 128px;
  background: var(--white);
}

/* Header de la section (fond sable) */
.contact-header {
  background: #e0d3cd;
  padding: 20px 24px 18px;
  text-align: center;
}

.contact-header h2 {
  margin: 0;
  color: #b07868;
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 300;
  line-height: 1.15;
}

.contact-header p {
  margin: 10px 0 0;
  color: #4d4650;
  font-size: 17px;
  line-height: 1.4;
}

/* Corps : portraits (gauche) + carte (droite) */
.contact-body {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  padding: 40px 0 24px;
  align-items: start;
}

.contact-practitioners-row {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.contact-practitioner {
  text-align: center;
  flex: 1;
  max-width: 240px;
}

.contact-portrait-wrap {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
}

.contact-portrait-wrap::before {
  content: "";
  position: absolute;
  width: 96%;
  height: 76%;
  background: #c57f6e;
  border-radius: 48% 52% 45% 55% / 56% 47% 53% 44%;
  transform: rotate(-3deg);
}

.contact-portrait-wrap img {
  position: relative;
  width: 138px;
  height: 138px;
  object-fit: cover;
  border-radius: 50%;
}

.contact-practitioner h3 {
  margin: 0 0 6px;
  color: #1f1c23;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.contact-phone {
  display: inline-block;
  color: #b17465;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

.contact-phone:hover {
  color: var(--brown-dark);
}

/* Carte Google Maps */
.contact-map {
  position: relative;
  width: 100%;
  min-height: 320px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}

.contact-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Barre d'adresse sous la carte */
.contact-address-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px 28px;
  color: #4d4650;
  font-size: 15px;
  line-height: 1.4;
}

.contact-address-bar svg {
  flex-shrink: 0;
  color: var(--brown);
}
/* ============================================================
   FOOTER (pied de page)
   3 colonnes (image | titre + logo partenaire | adresse)
   ============================================================ */
.site-footer {
  background: #dbc9bf;
}

.footer-inner {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding: 40px 0 32px;
  align-items: center;
}

/* Colonne gauche : logo Gestalt */
.footer-left {
  text-align: left;
}

.footer-gestalt-logo {
  display: block;
  width: 300px;
  height: auto;
}

/* Colonne centrale : titre + partenaire */
.footer-center {
  text-align: center;
}

.footer-title {
  margin: 0 0 6px;
  color: var(--brown);
  font-size: clamp(17px, 2vw, 26px);
  font-weight: 800;
  letter-spacing: 3px;
  line-height: 1.2;
}

.footer-partner-label {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-partner-logo {
  display: block;
  width: 210px;
  height: auto;
  margin: 0 auto;
}

/* Colonne droite : adresse */
.footer-right {
  color: #4d4650;
  font-size: 18px;
  line-height: 1.55;
  text-align: right;
}

/* Barre noire du bas (liens légaux) */
.footer-base {
  background: #1f1c23;
  padding: 16px 24px;
  text-align: center;
}

.footer-base .footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-base .footer-links a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-base .footer-links a:hover {
  color: #ffffff;
}

.footer-base-copy {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.2);
  font-size: 11px;
}

/* ============================================================
   MODALE "PRENDRE RENDEZ-VOUS"
   Fenêtre pop-up avec portrait, téléphone et logo
   ============================================================ */
.modal-overlay {
  display: none;               /* Masquée par défaut, affichée en JS */
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.modal {
  position: relative;
  width: 100%;
  max-width: 380px;
  background: var(--white);
  border-radius: 12px;
  padding: 32px 24px 28px;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: 0;
  background: none;
  font-size: 28px;
  line-height: 1;
  color: #999;
  cursor: pointer;
  padding: 4px;
}

.modal-close:hover {
  color: #333;
}

.modal-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
  margin: 0 auto 12px;
}

.modal-body h3 {
  margin: 0 0 16px;
  color: var(--brown);
  font-size: 20px;
  font-weight: 700;
}

.modal-practitioner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
}

.modal-portrait-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
}

.modal-portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-name {
  margin: 0;
  color: #1f1c23;
  font-size: 17px;
  font-weight: 700;
}

.modal-contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.modal-phone {
  color: #b17465;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.modal-hint {
  margin: 0;
  color: #999;
  font-size: 13px;
}

/* ============================================================
   ADAPTATIONS RESPONSIVES
   ============================================================ */

/* --- Écrans moyens (max 1060px) --- */
@media (max-width: 1060px) {
  .site-header {
    justify-content: space-between;
    gap: 20px;
  }

  .main-menu {
    gap: 16px;
    font-size: 14px;
  }
}

/* --- Tablette (max 860px) --- */
@media (max-width: 860px) {
  body {
    font-size: 16px;
  }

  .topbar-inner {
    justify-content: center;
  }

  /* Header plus compact */
  .site-header {
    min-height: 78px;
    padding: 8px 18px;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 12px;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }

  .brand-text strong {
    font-size: 17px;
  }

  .brand-text span {
    font-size: 11px;
  }

  /* Menu hamburger visible */
  .menu-toggle {
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    display: grid;
    place-content: center;
    gap: 5px;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brown);
  }

  .main-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 18px;
    background: var(--white);
    box-shadow: 0 16px 26px rgba(75, 50, 40, 0.12);
  }

  .site-header.menu-open .main-menu {
    display: flex;
  }

  .main-menu a {
    min-height: 42px;
  }

  .hero {
    min-height: 290px;
    background-position: center left;
    padding: 40px 24px 40px;
  }

  .intro-section {
    scroll-margin-top: 115px;
    padding-top: 30px;
  }

  .intro-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .intro-symbol {
    width: 230px;
    height: 205px;
  }

  .intro-text {
    padding-top: 0;
  }

  .practitioners-section {
    scroll-margin-top: 115px;
  }

  .practitioners-grid {
    grid-template-columns: 1fr;
  }

  .practitioner-card {
    min-height: auto;
    border-radius: 8px;
  }

  .portrait-wrap {
    height: 238px;
  }

  .portrait-wrap img {
    width: 200px;
    height: 200px;
  }

  .reasons-section,
  .session-section {
    scroll-margin-top: 115px;
  }

  .reasons-intro {
    padding-top: 44px;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .reason-column {
    justify-items: start;
  }

  .reason-icon {
    justify-self: center;
  }

  .session-section {
    padding-top: 34px;
  }
}

/* --- Petit mobile (max 520px) --- */
@media (max-width: 520px) {
  .brand-text strong {
    max-width: 190px;
  }

  .hero {
    min-height: 260px;
    padding: 40px 24px 36px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .intro-title-wrap h2 {
    font-size: 30px;
  }

  .tools ul,
  .intro-text {
    font-size: 16px;
  }

  .practitioners-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .practitioner-card {
    padding: 12px 12px 24px;
  }

  .practitioner-card h3 {
    font-size: 22px;
  }

  .role {
    font-size: 16px;
  }

  .certification,
  .practitioner-bio {
    font-size: 15px;
  }

  .reasons-intro p {
    font-size: 17px;
  }

  .reason-column ul {
    font-size: 17px;
  }

  .session-text {
    font-size: 16px;
    line-height: 1.72;
  }

  .session-images {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .session-image-item img,
  .session-visio-img {
    max-width: 340px;
    height: 240px;
  }
}

/* --- Responsive Contact & Footer (max 860px) --- */
@media (max-width: 860px) {
  .contact-section {
    scroll-margin-top: 115px;
  }

  .contact-body {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 0 16px;
  }

  .contact-practitioners-row {
    flex-direction: column;
    align-items: center;
  }

  .contact-map {
    min-height: 240px;
    order: -1;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 0 24px;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    text-align: center;
  }

  .footer-gestalt-logo {
    margin: 0 auto;
  }

  .footer-title {
    font-size: 18px;
  }

  .footer-partner-logo {
    width: 90px;
  }
}
