.elementor-2594 .elementor-element.elementor-element-487d08c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-999f658 */.hdr-main-wrapper-unique {
            box-sizing: border-box;
            width: 100%;
            background-color: #ffffff;
            border-bottom: 1px solid #e5e5e5;
            padding: 0;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
        }

        .hdr-main-wrapper-unique * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .hdr-container-unique {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .hdr-logo-wrapper-unique {
            flex-shrink: 0;
        }

        .hdr-logo-image-unique {
            height: 35px;
            width: auto;
        }

        .hdr-nav-menu-unique {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .hdr-nav-link-unique {
            text-decoration: none;
            color: #333333;
            font-size: 15px;
            font-weight: 400;
            transition: color 0.3s ease;
        }

        .hdr-nav-link-unique:hover {
            color: #4A9EFF;
        }

        .hdr-cta-button-unique {
            background: linear-gradient(135deg, #4A9EFF 0%, #2b7fd6 100%);
            color: #ffffff;
            padding: 12px 28px;
            border-radius: 6px;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s ease;
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(74, 158, 255, 0.2);
        }

        .hdr-cta-button-unique:hover {
            background: linear-gradient(135deg, #5aa9ff 0%, #3c8fe6 100%);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(74, 158, 255, 0.3);
        }

        .hdr-hamburger-btn-unique {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }

        .hdr-hamburger-line-unique {
            width: 25px;
            height: 3px;
            background-color: #333333;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .hdr-hamburger-btn-unique.active .hdr-hamburger-line-unique:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .hdr-hamburger-btn-unique.active .hdr-hamburger-line-unique:nth-child(2) {
            opacity: 0;
        }

        .hdr-hamburger-btn-unique.active .hdr-hamburger-line-unique:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .hdr-mobile-menu-unique {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background-color: #ffffff;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
            padding: 80px 30px 30px 30px;
            transition: right 0.3s ease;
            z-index: 1000;
        }

        .hdr-mobile-menu-unique.active {
            right: 0;
        }

        .hdr-mobile-nav-unique {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .hdr-mobile-link-unique {
            text-decoration: none;
            color: #333333;
            font-size: 16px;
            font-weight: 400;
            transition: color 0.3s ease;
        }

        .hdr-mobile-link-unique:hover {
            color: #4A9EFF;
        }

        .hdr-mobile-cta-wrapper-unique {
            margin-top: 15px;
            padding-top: 25px;
            border-top: 1px solid #e5e5e5;
        }

        .hdr-mobile-cta-btn-unique {
            display: block;
            background: linear-gradient(135deg, #4A9EFF 0%, #2b7fd6 100%);
            color: #ffffff;
            padding: 14px 28px;
            border-radius: 6px;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(74, 158, 255, 0.2);
        }

        .hdr-mobile-cta-btn-unique:hover {
            background: linear-gradient(135deg, #5aa9ff 0%, #3c8fe6 100%);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(74, 158, 255, 0.3);
        }

        .hdr-overlay-unique {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .hdr-overlay-unique.active {
            display: block;
            opacity: 1;
        }

        /* Tablette */
        @media (max-width: 1024px) {
            .hdr-container-unique {
                padding: 18px 30px;
            }

            .hdr-nav-menu-unique {
                gap: 30px;
            }

            .hdr-nav-link-unique {
                font-size: 14px;
            }

            .hdr-cta-button-unique {
                padding: 11px 24px;
                font-size: 14px;
            }
        }

        /* Mobile et Tablette - Menu hamburger */
        @media (max-width: 768px) {
            .hdr-container-unique {
                padding: 16px 20px;
            }

            .hdr-nav-menu-unique {
                display: none;
            }

            .hdr-hamburger-btn-unique {
                display: flex;
            }

            .hdr-mobile-menu-unique {
                display: block;
            }
        }

        /* Mobile uniquement - Cacher le bouton CTA */
        @media (max-width: 480px) {
            .hdr-cta-button-unique {
                display: none;
            }

            .hdr-container-unique {
                padding: 16px 15px;
            }

            .hdr-logo-image-unique {
                height: 30px;
            }
        }/* End custom CSS */