 body {
            min-height: 100vh;
            font-family: 'Segoe UI', Arial, sans-serif;
            color: #002B49;
           /* background: url('https://realestate.orisha.com/app/uploads/2024/08/HOMEPAGE-TEST-3-2048x969.jpg.webp') no-repeat center center fixed;*/
            background: url('background-orisha.png') no-repeat center center fixed;
            background-size: cover;
            position: relative;
        }
        /* Voile blanc semi-transparent */
        .overlay {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(255,255,255,0.82);
            z-index: 0;
        }
        .header {
            /*background: #002B49;
            padding: 30px 0 20px 0;*/
            text-align: center;
        }
        .header img {
            height: 200px;
			filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
        }
        .container {
            background: #fff;
            max-width: 500px;
            margin: 40px auto;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,43,73,0.09);
            padding: 40px 30px;
            text-align: center;
			position: relative;
            z-index: 1;
        }
        h1 {
            color: #002B49;
            font-size: 2em;
            margin-bottom: 0.5em;
        }
        .highlight {
            color: #00AEEF;
            font-weight: bold;
        }
        p {
            font-size: 1.15em;
            margin-bottom: 1.5em;
        }
        .footer {
            text-align: center;
            color: #888;
            font-size: 0.95em;
            margin-top: 40px;
			position: relative;
            z-index: 1;
        }
        @media (max-width: 600px) {
            .container {
                padding: 25px 10px;
                max-width: 95vw;
            }
            .header img {
                height: 40px;
            }
        }