         body {
            font-family: Helvetica, sans-serif;
         }

         .container {
            width: 1100px;
            margin: 50px 354px;
            background-color: rgba(250, 250, 239, 0.9);
            padding: 40px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            min-height: 100vh;
         }

         h1 {
            text-align: center;
            color: #660000;
            font-family: cursive;
            margin-bottom: 40px;
         }

         h2 {
            color: #660000;
            margin-top: 30px;
            margin-bottom: 15px;
         }

         .balade-card {
            display: flex;
            align-items: flex-start;
            gap: 25px;
            margin-bottom: 35px;
            padding-bottom: 30px;
            border-bottom: 1px solid #e0e0d0;
         }

         .balade-card:last-child {
            border-bottom: none;
         }

         .balade-image {
            width: 400px;
            height: auto;
            border-radius: 4px;
            cursor: pointer;
            transition: transform 0.2s;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
         }

         .balade-image:hover {
            transform: scale(1.02);
         }

         .balade-info {
            flex: 1;
         }

         .balade-info h2 {
            margin-top: 0;
            color: #7d3f00;
            font-size: 1.4em;
         }

         .balade-info p {
            line-height: 1.6;
            color: #333;
            text-align: justify;
         }

         /* Boutons fixes */
         .back-btn,
         .contact-btn {
            position: fixed;
            bottom: 20px;
            padding: 10px 20px;
            background-color: #cacabe;
            color: #660000;
            border: 1px solid #660000;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            font-size: 14px;
            z-index: 1000;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
            transition: background 0.3s;
         }

         .back-btn:hover,
         .contact-btn:hover {
            background-color: #b8b8ac;
         }

         .back-btn {
            right: 20px;
         }
         .contact-btn {
            left: 20px;
         }

         /* Pagefind search integration */
         #search {
            margin-bottom: 30px;
         }
