        .navbar-brand {
            display: block !important;
        }

        .navbar-brand img {
            display: block !important;
            max-height: 40px !important;
            width: auto !important;
        }

        /* Mobile responsive improvements */
        @media (max-width: 576px) {
            .navbar-brand img {
                max-height: 35px !important;
            }
        }

        /* Header logo styling */
        .header nav > a.icon {
            display: block;
            width: 120px;
            height: 60px;
            background-image: url('https://www.finday.be/img/cpe/global/logo-cpe.svg');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }

        /* Booking system specific styles */
        .booking-container {
            max-width: 800px;
            margin: 0 auto;
        }

        /* Reduced margins and padding */
        .container {
            padding-left: 1rem;
            padding-right: 1rem;
        }

        .step-content {
            padding: 1rem 0;
        }

        .card-body {
            padding: 1rem !important;
        }

        .mb-3 {
            margin-bottom: 1rem !important;
        }

        .mb-4 {
            margin-bottom: 1.5rem !important;
        }

        .mb-5 {
            margin-bottom: 2rem !important;
        }

        .g-2 > * {
            padding: 0.25rem !important;
        }

        .g-3 > * {
            padding: 0.5rem !important;
        }

        .service-card, .consultation-type-card {
            border: 2px solid transparent;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .service-card:hover, .consultation-type-card:hover {
            border-color: var(--bs-primary);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .service-card.selected, .consultation-type-card.selected {
            border-color: var(--bs-primary);
            background-color: var(--bs-primary-bg-subtle);
        }

        .date-btn, .time-btn {
            border: 2px solid #dee2e6;
            transition: all 0.2s ease;
        }

        .date-btn:hover, .time-btn:hover {
            border-color: var(--bs-primary);
            background-color: var(--bs-primary-bg-subtle);
        }

        .date-btn.selected, .time-btn.selected {
            border-color: var(--bs-primary);
            background-color: var(--bs-primary);
            color: white;
        }

        .step-indicator {
            display: flex;
            justify-content: center;
            margin-bottom: 2rem;
        }

        .step {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #dee2e6;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 1rem;
            font-weight: bold;
            position: relative;
        }

        .step.active {
            background-color: var(--bs-primary);
            color: white;
        }

        .step.completed {
            background-color: var(--bs-success);
            color: white;
        }

        .step.completed::after {
            content: '✓';
            position: absolute;
        }

        /* Smooth transitions for content changes */
        .booking-content {
            min-height: 400px;
            transition: opacity 0.3s ease;
        }

        .booking-content.fade-out {
            opacity: 0.3;
        }

        /* Conteneur WPML */
        .wpml-ls-statics-shortcode_actions.wpml-ls.wpml-ls-legacy-list-horizontal {
          margin: 0;
          padding: 0;
        }

        /* UL de la liste */
        .wpml-ls-legacy-list-horizontal ul {
          margin: 0;
          padding: 0;
          list-style: none;
          display: inline-flex;           /* aligne FR / NL à l'horizontale */
          gap: .5rem;                     /* espace entre éléments */
          align-items: center;
        }

        /* LI */
        .wpml-ls-legacy-list-horizontal .wpml-ls-item {
          display: inline-block;
        }

        /* Liens */
        .wpml-ls-legacy-list-horizontal .wpml-ls-link {
          display: inline-block;
          text-decoration: none;
          line-height: 1;
          padding: .25rem .4rem;
          border-radius: .375rem;
          transition: color .15s ease, background-color .15s ease;
          font-weight: 600;
        }

        /* État normal / hover */
        .wpml-ls-legacy-list-horizontal .wpml-ls-link:hover,
        .wpml-ls-legacy-list-horizontal .wpml-ls-link:focus {
          text-decoration: none;
          background: rgba(0,0,0,.06);
        }

        /* Langue courante */
        .wpml-ls-legacy-list-horizontal .wpml-ls-current-language .wpml-ls-link {
          background: rgba(0,0,0,.1);
          cursor: default;
        }

        /* Optionnel : compacité dans les zones étroites */
        @media (max-width: 480px) {
          .wpml-ls-legacy-list-horizontal ul {
            gap: .35rem;
          }
          .wpml-ls-legacy-list-horizontal .wpml-ls-link {
            padding: .2rem .35rem;
          }
        }
