        /* Reset et styles de base */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
            background-color: #f8f9fa;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: #234e70;
        }
        
        a {
            color: #1a5fb4;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        a:hover {
            color: #0d4ba0;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }
        
        .col {
            flex: 1;
            padding: 0 15px;
        }
        
        .btn {
            display: inline-block;
            padding: 10px 30px;
            background-color: #0f4b8a;
            color: #e8e8e8;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.3s;
            text-align: center;
        }
        
        .btn:hover {
            background-color: #0d4ba0;
            transform: translateY(-2px);
            color: white;
        }
        
        .btn:disabled {
            background-color: #ccc;
            cursor: not-allowed;
            transform: none;
        }
        
        .btn-cta {
            background-color: #f99f5d;
            font-size: 18px;
            padding: 12px 32px;
			color: #242424;
        }
        
        .btn-cta:hover {
            background-color: #f9b785;
			color: #242424;
        }
        
        .text-center {
            text-align: center;
        }
        
        .section {
            padding: 60px 0;
        }
        
        .section-title {
            font-size: 32px;
            margin-bottom: 40px;
            text-align: center;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: #e67e22;
            margin: 15px auto;
        }
        
        /* Messages d'erreur et succès */
        .error-message {
            background-color: #ffebee;
            color: #c62828;
            padding: 15px;
            border-radius: 4px;
            margin: 20px 0;
            border-left: 4px solid #c62828;
            font-weight: 500;
        }
        
        .success-message {
            background-color: #e8f5e8;
            color: #2e7d32;
            padding: 15px;
            border-radius: 4px;
            margin: 20px 0;
            border-left: 4px solid #2e7d32;
            font-weight: 500;
        }
        
        /* Header */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #234e70;
            display: flex;
            align-items: center;
        }
        
        .logo i {
            font-size: 28px;
            margin-right: 10px;
            color: #e67e22;
        }
        
        .contact-info {
            display: flex;
            align-items: center;
        }
        
        .contact-item {
            margin-left: 20px;
            display: flex;
            align-items: center;
            font-size: 14px;
            color: #555;
        }
        
        .contact-item i {
            margin-right: 6px;
            font-size: 18px;
            color: #1a5fb4;
        }
        
        /* Hero Section */
        .hero {
            background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./../../assets/images/fond.webp');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: white;
        }
        
        .hero p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .hero .btn {
            margin-top: 20px;
        }
        
        /* Service Boxes */
        .service-boxes {
            background-color: white;
        }
        
        .service-box {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 30px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        
        .service-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f0f7ff;
            border-radius: 50%;
            margin: 0 auto 20px;
        }
        
        .service-icon i {
            font-size: 36px;
            color: #1a5fb4;
        }
        
        .service-title {
            font-size: 20px;
            margin-bottom: 15px;
        }
        
        /* Avantages Section */
        .avantages {
            background-color: #f5f5f5;
        }
        
        .avantages-list {
            display: flex;
            flex-wrap: wrap;
        }
        
        .avantage-item {
            flex: 0 0 50%;
            margin-bottom: 25px;
            padding-right: 30px;
            display: flex;
            align-items: flex-start;
        }
        
        .avantage-icon {
            background-color: #e67e22;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .avantage-icon i {
            font-size: 18px;
        }
        
        .avantage-text h4 {
            margin-bottom: 5px;
            font-size: 18px;
        }
        
        /* Simulateur section */
        .simulateur-section {
            background-color: white;
        }
        
        .simulateur-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 40px;
        }
        
        /* Témoignages */
        .testimonials {
            background-color: #f8f9fa;
        }
        
        .testimonial-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
        }
        
        .testimonial {
            flex: 1;
            min-width: 300px;
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
        }
        
        .testimonial:before {
            content: '\201C';
            font-size: 80px;
            position: absolute;
            top: -20px;
            left: 10px;
            color: #f0f0f0;
            font-family: Georgia, serif;
        }
        
        .testimonial-text {
            margin-bottom: 20px;
            font-style: italic;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            background-color: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .testimonial-avatar i {
            font-size: 24px;
            color: #999;
        }
        
        .testimonial-name {
            font-weight: 600;
        }
        
        .testimonial-location {
            font-size: 14px;
            color: #777;
        }
        
        /* Contact section */
        .contact {
            background-color: #234e70;
            color: white;
        }
        
        .contact .section-title {
            color: white;
        }
        
        .contact-form-container {
            background-color: white;
            border-radius: 8px;
            padding: 40px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            max-width: 800px;
            margin: 0 auto;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #333;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #1a5fb4;
            box-shadow: 0 0 0 2px rgba(26, 95, 180, 0.1);
        }
        
        .form-row {
            display: flex;
            gap: 20px;
        }
        
        .form-row .form-group {
            flex: 1;
        }
        
        .form-checkboxes {
            margin-bottom: 20px;
        }
        
        .form-checkbox {
            display: flex;
            align-items: flex-start;
            margin-bottom: 10px;
        }
        
        .form-checkbox input {
            margin-right: 10px;
            margin-top: 5px;
            flex-shrink: 0;
        }
        
        .form-checkbox label {
            color: #333;
            font-size: 15px;
        }
        
        .privacy-text {
            font-size: 14px;
            color: #666;
            margin-bottom: 20px;
        }
        
        .privacy-text a {
            text-decoration: underline;
        }
        
        /* Footer */
        footer {
            background-color: #1a1a1a;
            color: #999;
            padding: 50px 0 20px;
            font-size: 14px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 200px;
        }
        
        .footer-column h2 {
            color: white;
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #999;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .footer-contact-item i {
            margin-right: 10px;
            color: #e67e22;
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #333;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .row {
                flex-direction: column;
            }
            
            .col {
                margin-bottom: 30px;
            }
            
            .service-box {
                margin-bottom: 30px;
            }
            
            .avantage-item {
                flex: 0 0 100%;
            }
            
            .contact-info {
                display: none;
            }
            
            .mobile-contact {
                display: flex;
                flex-direction: column;
                gap: 10px;
                margin-top: 20px;
            }
            
            .form-row {
                flex-direction: column;
                gap: 0;
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .testimonial-container {
                flex-direction: column;
            }
			
			.header-content {
                flex-direction: column;
                gap: 15px;
            }
        }
        
        @media (min-width: 993px) {
            .mobile-contact {
                display: none;
            }
        }
        
        /* Icônes de confiance */
        .trust-icons {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin: 50px 0;
            flex-wrap: wrap;
        }
        
        .trust-icon {
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 150px;
            text-align: center;
        }
        
        .trust-icon i {
            font-size: 40px;
            color: #1a5fb4;
            margin-bottom: 15px;
        }
        
        .trust-icon-text {
            font-size: 14px;
            font-weight: 500;
        }
        
        /* Cookie Consent */
        .cookie-consent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(0, 0, 0, 0.85);
            color: white;
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 9999;
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 20px;
            font-size: 14px;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 15px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
        }
        
        .accept-btn {
            background-color: #f99f5d;
            color: #242424;
        }
        
        .accept-btn:hover {
            background-color: #f9b785;
        }
        
        .decline-btn {
            background-color: transparent;
            color: white;
            border: 1px solid white;
        }
        
        .decline-btn:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* Scroll to Top */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: #e67e22;
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
            z-index: 100;
        }
        
        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-top i {
            font-size: 24px;
        }
        
        /* Réalisations galerie */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            height: 200px;
        }
        
        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 10px;
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        
        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }
        
        .gallery-item:hover .gallery-img {
            transform: scale(1.1);
        }
        
        .gallery-title {
            font-size: 16px;
            margin-bottom: 5px;
			color: #e67e22;
        }
        
        .gallery-desc {
            font-size: 13px;
            opacity: 0.8;
        }
        
        @media (max-width: 600px) {
            .row {
                flex-direction: column;
                gap: 0;
            }
            
            .piece-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .piece-actions {
                position: static;
                margin-top: 10px;
                display: flex;
                justify-content: flex-end;
            }
        }