/* Bouton RDV fixed en bas sur mobile */
@media (max-width: 768px) {

  .cta-rdv-mobile {
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #7A8B60; /* Vert principal */
    color: #ffffff !important;
    padding: 14px 22px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    z-index: 9999;
    width: 80%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    text-decoration: none !important;
    display: block;
  }

}