        :root {
            --primary-color: #4CAF50;
            --secondary-color: #2E7D32;
            --dark-color: #343a40;
            --light-color: #f8f9fa;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            padding-top: 56px;
            background-color: #f5f5f5;
        }
        
        .navbar {
            transition: all 0.3s;
        }
        
        .navbar.scrolled {
            background-color: var(--dark-color) !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .espace {
            height: 30px;
        }
        
        .annonce-section {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 60px 0;
            text-align: center;
            border-radius: 8px;
            margin: 30px 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .annonce-section h2 {
            font-size: 2.2rem;
            color: var(--dark-color);
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .annonce-section p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 30px;
        }
        
        .big-annonce-button {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            text-decoration: none;
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            font-weight: 600;
        }
        
        .big-annonce-button:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }
        
        .card-section {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }
        
        .card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            background-color: white;
            cursor: pointer;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .card-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }
        
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .card:hover .card-image img {
            transform: scale(1.05);
        }
        
        .ribbon {
            position: absolute;
            top: 15px;
            right: -30px;
            background-color: var(--primary-color);
            color: white;
            padding: 5px 35px;
            transform: rotate(45deg);
            font-size: 0.8rem;
            font-weight: 600;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }
        
        .card-content {
            padding: 20px;
        }
        
        .card-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--dark-color);
        }
        
        .card-details {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 15px;
            color: #666;
        }
        
        .card-details span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .card-description {
            color: #666;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .card-button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 5px;
            width: 100%;
            transition: background-color 0.3s;
        }
        
        .card-button:hover {
            background-color: var(--secondary-color);
        }
        
        .property-info-section {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .property-info-section h4 {
            color: var(--dark-color);
            margin-bottom: 25px;
            font-weight: 600;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 10px;
        }
        
        .property-link {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s;
            padding: 10px;
            border-radius: 5px;
        }
        
        .property-link:hover {
            background-color: #f8f9fa;
            transform: translateX(5px);
        }
        
        .property-image {
            width: 80px;
            height: 80px;
            overflow: hidden;
            border-radius: 5px;
        }
        
        .property-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .property-text-content h5 {
            color: var(--dark-color);
            margin-bottom: 5px;
        }
        
        .properties-container {
            display: flex;
            gap: 30px;
        }
        
        .main-properties {
            flex: 3;
        }
        
        .recent-properties-sidebar {
            flex: 1;
        }
        
        .sidebar-widget {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }
        
        .widget-title {
            color: var(--dark-color);
            margin-bottom: 20px;
            font-weight: 600;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 10px;
        }
        
        .property-card {
            display: flex;
            margin-bottom: 15px;
            text-decoration: none;
            color: inherit;
            transition: all 0.3s;
            padding: 10px;
            border-radius: 5px;
        }
        
        .property-card:hover {
            background-color: #f8f9fa;
            text-decoration: none;
            color: inherit;
        }
        
        .property-thumb {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 5px;
            margin-right: 15px;
        }
        
        .property-info {
            flex: 1;
        }
        
        .property-info h5 {
            font-size: 1rem;
            margin-bottom: 5px;
            color: var(--dark-color);
        }
        
        .property-price-small {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 3px;
        }
        
        .property-location-small {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 5px;
        }
        
        .property-location span {
            margin-right: 10px;
            font-size: 0.85rem;
            color: #666;
        }
        
        .list-group-item {
            text-decoration: none;
            border: 1px solid rgba(0,0,0,.125);
        }
        
        .list-group-item:hover {
            text-decoration: none;
        }
        
        @media (max-width: 992px) {
            .properties-container {
                flex-direction: column;
            }
            
            .recent-properties-sidebar {
                margin-top: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .card-section {
                grid-template-columns: 1fr;
            }
            
            .annonce-section h2 {
                font-size: 1.8rem;
            }
            
            .annonce-section p {
                font-size: 1rem;
            }
        }
        
        /* Correction des soulignements */
        a, a:hover, a:focus {
            text-decoration: none !important;
        }
        
        .nav-link {
            text-decoration: none !important;
        }
        
        .btn {
            text-decoration: none !important;
        }

               .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        
        .footer-title {
            font-size: 1.2rem;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icons a {
            color: white;
            font-size: 1.2rem;
            transition: transform 0.3s;
        }
        
        .social-icons a:hover {
            transform: translateY(-3px);
        }
        
        .copyright {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #495057;
            color: #adb5bd;
        }
       