
        /* Reset et styles de base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            line-height: 1.6;
            color: #333;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .btn {
            display: inline-block;
            background-color: #0f6b92;
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: #0c5678;
            transform: translateY(-2px);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid #0f6b92;
            color: #0f6b92;
        }

        .btn-outline:hover {
            background-color: #0f6b92;
            color: white;
        }

        .btn-accent {
            background-color: #ec4d31;
        }

        .btn-accent:hover {
            background-color: #d93f24;
        }

        /* Hiérarchie typographique améliorée */
        h1 {
            font-size: 25px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        h2 {
            font-size: 2rem;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
        }

        h3 {
            font-size: 1.75rem;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 0.75rem;
        }

        h4 {
            font-size: 1.5rem;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 0.5rem;
        }

        h5 {
            font-size: 1.25rem;
            font-weight: 500;
            line-height: 1.4;
            margin-bottom: 0.5rem;
        }

        h6 {
            font-size: 1.1rem;
            font-weight: 500;
            line-height: 1.4;
            margin-bottom: 0.5rem;
        }

        p {
            margin-bottom: 1rem;
            text-align: justify;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
            font-size: 2.2rem;
            color: #ec4d31;
            text-transform: uppercase;
        }

        .section-title span {
            color: #0f6b92;
        }

        /* Header et Navigation */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .top-bar {
            background-color: #0f6b92;
            color: white;
            padding: 8px 0;
            font-size: 0.9rem;
        }

        .top-contact span {
            margin-right: 20px;
        }

        .top-contact i {
            margin-right: 5px;
        }

        .social-links-top a {
            color: white;
            margin-left: 15px;
            transition: color 0.3s;
        }

        .social-links-top a:hover {
            color: #ec4d31;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #0f6b92;
        }

        .logo span {
            color: #ec4d31;
        }

        .nav-menu a {
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: #0f6b92;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(234, 77, 49, 0.46), rgba(15, 107, 146, 0.47)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1973&q=80') no-repeat center center/cover;
            height: 80vh;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-content h1 {
            font-size: 23px;
            margin-bottom: 20px;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .search-container {
            background: white;
            border-radius: 10px;
            padding: 20px;
            max-width: 800px;
            margin: 0 auto;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        .search-tabs {
            display: flex;
            margin-bottom: 15px;
            border-bottom: 1px solid #eee;
            color: #ec4d31;
        }

        .search-tab {
            padding: 10px 20px;
            cursor: pointer;
            font-weight: 500;
            border-bottom: 3px solid transparent;
            margin-right: 10px;
        }

        .search-tab.active {
            border-bottom: 3px solid #0f6b92;
            color: #0f6b92;
        }

        .search-filters {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
            margin-bottom: 15px;
        }

        .search-filters select,
        .search-filters input {
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            width: 100%;
        }

        .search-button {
            background: #ec4d31;
            color: white;
            border: none;
            border-radius: 5px;
            padding: 15px 30px;
            cursor: pointer;
            font-weight: 600;
            width: 100%;
            transition: background 0.3s;
        }

        .search-button:hover {
            background: #d93f24;
        }

        /* Featured Properties */
        .featured-properties {
            padding: 80px 0;
        }

        .property-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            height: 100%;
        }

        .property-card:hover {
            transform: translateY(-10px);
        }

        .property-img {
            height: 200px;
            width: 100%;
            object-fit: cover;
        }

        .property-details {
            padding: 20px;
        }

        .property-price {
            color: #0f6b92;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .property-address {
            color: #777;
            margin-bottom: 15px;
        }

        .property-features {
            display: flex;
            justify-content: space-between;
            border-top: 1px solid #eee;
            padding-top: 15px;
            margin-top: 15px;
        }

        /* Services */
        .services {
            background-color: #eaedf0;
            padding: 80px 0;
        }

        .service-card {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-icon {
            font-size: 2.5rem;
            color: #0f6b92;
            margin-bottom: 20px;
        }

        /* About */
        .about {
            padding: 80px 0;
        }

        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Testimonials */
        .testimonials {
            background-color: #e8ebee;
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .testimonial-card {
            background: rgb(15, 105, 145);
            padding: 30px;
            border-radius: 10px;
            height: 100%;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }

        .testimonial-author {
            font-weight: 700;
        }

        /* Contact */
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            transition: transform 0.3s ease;
        }
        
        .contact-item:hover {
            transform: translateX(5px);
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: #0f6b92;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .contact-info h6 {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .contact-form {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        }
        
        .form-control {
            padding: 12px 15px;
            border: 1px solid #e1e1e1;
            border-radius: 5px;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            border-color: #0f6b92;
            box-shadow: 0 0 0 0.25rem rgba(15, 107, 146, 0.25);
        }
        
        .btn-primary {
            background: #0f6b92;
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background: var(--secondary);
            transform: translateY(-2px);
        }
        
        .map-container {
            margin-top: 50px;
            height: 400px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        }
        
        .social-links {
            display: flex;
            margin-top: 30px;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            background: #0f6b92;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .contact-item {
                margin-bottom: 20px;
            }
            
            .contact-form {
                margin-top: 30px;
            }
        }
        
        @media (max-width: 576px) {
            .hed-hero {
                min-height: 200px;
            }
            
            .contact-icon {
                width: 40px;
                height: 40px;
            }
        }

        /* Footer */
        footer {
            background: #0e6a91;
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: #eb4c32;
        }
        
        .footer-links a {
            color: #ccc;
            display: block;
            margin-bottom: 10px;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .footer-contact li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .footer-contact i {
            margin-right: 10px;
            color: var(--secondary);
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
        }
        

        /* Améliorations design pro */
        .card-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }
        
        .stat-number {
            font-size: 25px;
            font-weight: 700;
            color: #0f6b92;
            margin-bottom: 0.5rem;
            padding: 8px;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: #0f6b92;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 14px;
        }
        
        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.6;
        }
        
        .testimonial-author {
            font-size: 1rem;
            color: #ec4d31;
        }
        
        .property-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .service-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        /* Responsive Design amélioré */
        @media (max-width: 1200px) {
            h1 {
                font-size: 2.25rem;
            }
            
            h2 {
                font-size: 1.9rem;
            }
            
            .hero-content h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 992px) {
            h1 {
                font-size: 2rem;
            margin-bottom: 0.9rem;
            line-height: 1.3;
            }
            
            h2 {
                font-size: 1.75rem;
                margin-bottom: 0.8rem;
            }
            
            h3 {
                font-size: 1.5rem;
                margin-bottom: 0.7rem;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .stat-number {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
                margin-bottom: 0.8rem;
            }
            
            h2 {
                font-size: 1.6rem;
                margin-bottom: 0.7rem;
            }
            
            h3 {
                font-size: 1.4rem;
                margin-bottom: 0.6rem;
            }
            
            h4 {
                font-size: 1.3rem;
                margin-bottom: 0.5rem;
            }
            
            .top-bar-container {
                text-align: center;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .property-title {
                font-size: 1.2rem;
            }
            
            .service-title {
                font-size: 1.2rem;
            }
            
            .testimonial-text {
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            h1 {
                font-size: 1.6rem;
                margin-bottom: 0.7rem;
            }
            
            h2 {
                font-size: 1.4rem;
                margin-bottom: 0.6rem;
            }
            
            h3 {
                font-size: 1.3rem;
                margin-bottom: 0.5rem;
            }
            
            h4 {
                font-size: 1.2rem;
                margin-bottom: 0.4rem;
            }
            
            h5 {
                font-size: 1.1rem;
                margin-bottom: 0.4rem;
            }
            
            h6 {
                font-size: 1rem;
                margin-bottom: 0.3rem;
            }
            
            .hero {
                height: auto;
                padding: 60px 0;
            }

            .hero-content h1 {
                font-size: 1.8rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }

            .search-container {
                padding: 15px;
            }

            .search-tabs {
                flex-wrap: wrap;
            }

            .search-tab {
                margin-bottom: 10px;
                font-size: 0.9rem;
                padding: 8px 15px;
            }

            .section-title {
                font-size: 1.5rem;
                margin-bottom: 25px;
            }
            
            .stat-number {
                font-size: 1.8rem;
            }
            
            .stat-label {
                font-size: 0.8rem;
            }
            
            .property-price {
                font-size: 1.3rem;
            }
            
            .property-features span {
                font-size: 0.9rem;
            }
            
            .service-icon {
                font-size: 2rem;
            }
            
            .contact-icon {
                font-size: 1.3rem;
            }
     
        }

        /* Hero Section banner */
        .hed-hero {
            background: linear-gradient(to right, rgba(235,76,50,0.8), rgba(15,107,146,0.8), rgba(111,177,252,0.8)), 
                        url('/img/banner.png') no-repeat center center/cover;
            min-height: 250px;
            color: white;
            display: flex;
            align-items: center;
            position: relative;
        }
        .hed-hero-contact {
            background: linear-gradient(to right, rgba(235,76,50,0.8), rgba(15,107,146,0.8), rgba(111,177,252,0.8)), 
                        url('/img/contact-bg.jpg') no-repeat center center/cover;
            min-height: 250px;
            color: white;
            display: flex;
            align-items: center;
            position: relative;
        }
        .hed-hero-equipe {
            background: linear-gradient(to right, rgba(235,76,50,0.8), rgba(15,107,146,0.8), rgba(111,177,252,0.8)), 
                        url('/img/equipe.jpg') no-repeat center center/cover;
            min-height: 250px;
            color: white;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        /* Team Section */
        .team-member {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            height: 100%;
        }
        
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .team-img {
            position: relative;
            overflow: hidden;
        }
        

        .team-img img {
            width: 200px;
            object-fit: cover;
            transition: all 0.5s ease;
            margin: auto;display: block;
        }
        
        .team-member:hover .team-img img {
            transform: scale(1.1);
        }
        
        .team-info {
            padding: 20px;
            text-align: center;
        }
        
        .team-info h4 {
            color: #0f6b92;
            margin-bottom: 5px;
            font-weight: 700;
        }
        
        .team-info .position {
            color: #eb4c32;
            font-weight: 600;
            margin-bottom: 15px;
            display: block;
        }
        
        .team-contact {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }
        
        .team-contact a {
            color: var(--dark);
            margin: 0 5px;
            transition: all 0.3s;
            text-decoration: none;
            display: block;
            margin-bottom: 5px;
        }
        
        .team-contact a:hover {
            color: #eb4c32;
        }
        
        /* Stats Section */
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #0f6b92;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 1rem;
            color: var(--dark);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Values Section */
        .value-item {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: all 0.3s;
            margin-bottom: 20px;
        }
        
        .value-item:hover {
            background: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }
        
        .value-icon {
            width: 80px;
            height: 80px;
            background: #0f6b92;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
        }
        
   