/* CSS externe pour le widget estimation par ville - justimo-widget.css */

/* Reset et base pour le widget */
.estimation-par-ville * {
    box-sizing: border-box;
}

.estimation-par-ville {
    max-width: 1200px !important;
    margin: 0 auto !important;
    font-family: 'Arial', sans-serif !important;
    color: #333 !important;
    line-height: 1.6 !important;
    padding: 20px !important;
}

.estimation-par-ville .widget-content {
    display: flex !important;
    gap: 30px !important;
    align-items: flex-start !important;
}

.estimation-par-ville .content-section {
    flex: 2 !important;
}

.estimation-par-ville .content-section h2 {
    color: #0d3a5c !important;
    margin-bottom: 20px !important;
    font-size: 1.8em !important;
    font-weight: bold !important;
    line-height: 1.3 !important;
}

.estimation-par-ville .content-section h3 {
    color: #0d3a5c !important;
    margin-top: 25px !important;
    margin-bottom: 15px !important;
    font-size: 1.3em !important;
    font-weight: bold !important;
}

.estimation-par-ville .content-section p {
    margin-bottom: 15px !important;
    text-align: justify !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
}

.estimation-par-ville .content-section ul,
.estimation-par-ville .content-section ol {
    margin-bottom: 20px !important;
    padding-left: 20px !important;
}

.estimation-par-ville .content-section li {
    margin-bottom: 8px !important;
    font-size: 16px !important;
}

/* Features */
.estimation-par-ville .features {
    display: flex !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    margin: 40px 0 !important;
    gap: 20px !important;
}

.estimation-par-ville .feature-box {
    flex-basis: 30% !important;
    text-align: center !important;
    padding: 20px !important;
    background-color: #f8f9fa !important;
    border-radius: 5px !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important;
    border: 1px solid #e9ecef !important;
}

.estimation-par-ville .feature-box h3 {
    color: #0d3a5c !important;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
    font-size: 1.2em !important;
    font-weight: bold !important;
}

.estimation-par-ville .feature-box p {
    margin: 0 !important;
    font-size: 0.9em !important;
    text-align: center !important;
    line-height: 1.5 !important;
}

/* Widget des villes */
.estimation-par-ville .cities-widget {
    flex: 1 !important;
    background-color: #f8f9fa !important;
    border-radius: 5px !important;
    padding: 20px !important;
    height: fit-content !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important;
    border: 1px solid #e9ecef !important;
    min-width: 250px !important;
}

.estimation-par-ville .cities-widget h3 {
    margin-top: 0 !important;
    border-bottom: 2px solid #0d3a5c !important;
    padding-bottom: 10px !important;
    margin-bottom: 15px !important;
    color: #0d3a5c !important;
    font-size: 1.2em !important;
    font-weight: bold !important;
}

.estimation-par-ville .cities-list {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
}

.estimation-par-ville .cities-list a {
    color: #0d3a5c !important;
    text-decoration: none !important;
    padding: 8px !important;
    border-radius: 3px !important;
    transition: all 0.3s ease !important;
    font-size: 0.9em !important;
    display: block !important;
    border: 1px solid transparent !important;
}

.estimation-par-ville .cities-list a:hover {
    background-color: #e9ecef !important;
    font-weight: bold !important;
    transform: translateX(5px) !important;
    border-color: #0d3a5c !important;
}

/* Responsive */
@media (max-width: 768px) {
    .estimation-par-ville {
        padding: 15px !important;
    }
    
    .estimation-par-ville .widget-content {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .estimation-par-ville .features {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .estimation-par-ville .feature-box {
        flex-basis: 100% !important;
    }
    
    .estimation-par-ville .cities-list {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .estimation-par-ville .content-section h2 {
        font-size: 1.5em !important;
    }
    
    .estimation-par-ville .content-section h3 {
        font-size: 1.2em !important;
    }
}
<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.52;
            color: #0d3a5c;
            background-color: #ffffff;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5px;
        }

        /* Header */
        header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: #2c5aa0;
            text-decoration: none;
        }

        .cta-header {
            background: linear-gradient(135deg, #1d89c0 0%, #1b3955 100%);
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

        .cta-header:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 0 0;
            position: relative;
            overflow: hidden;
            padding: 40px 20px 20px 0px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="house" patternUnits="userSpaceOnUse" width="20" height="20"><path d="M10 2L18 10L18 18L2 18L2 10Z" fill="none" stroke="%23e0e6ed" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23house)"/></svg>') repeat;
            opacity: 0.1;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
            margin: 40px 0 20px 0px;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            font-weight: 800;
            color: #0d3a5c;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-text .location {
            color: #1d89c0;
            font-weight: 600;
        }

        .hero-text p {
            font-size: 1.25rem;
            color: #5a6c7d;
            margin-bottom: 2rem;
            font-weight: 400;
        }

        .hero-features {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #5a6c7d;
            font-weight: 500;
        }

        .feature-icon {
            width: 20px;
            height: 20px;
            background: #1d89c0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
        }

        /* Estimation Form */
        .estimation-form {
            padding: 0rem;
            border-radius: 10px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            position: relative;
            transform: translateY(-10px);
        }

        .form-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .form-header h2 {
            font-size: 1.8rem;
            color: #0d3a5c;
            margin-bottom: 0.5rem;
        }

        .form-header p {
            color: #7f8c8d;
            font-size: 0.95rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #34495e;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #e8ecf0;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #fafbfc;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #1d89c0;
            background: white;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #1d89c0 0%, #1b3955 100%);
            color: white;
            padding: 18px;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* How it works */
        .how-it-works {
            padding: 80px 0;
            background: #f8fafc;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #0d3a5c;
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #5a6c7d;
            max-width: 600px;
            margin: 0 auto;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #1d89c0 0%, #1b3955 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        }

        .step h3 {
            font-size: 1.4rem;
            color: #0d3a5c;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .step p {
            color: #5a6c7d;
            line-height: 1.6;
        }

        /* Trust section */
        .trust {
            padding: 80px 0;
            background: white;
            border-radius: 15px;
        }

        .testimonials {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial {
            background: #f8fafc;
            padding: 2rem;
            border-radius: 15px;
            border-left: 4px solid #667eea;
            transition: all 0.3s ease;
        }

        .testimonial:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        .testimonial-text {
            font-style: italic;
            color: #5a6c7d;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .testimonial-author {
            font-weight: 600;
            color: #0d3a5c;
        }

        .testimonial-location {
            color: #7f8c8d;
            font-size: 0.9rem;
        }

        /* Partners section */
        .partners {
            padding: 80px 0;
            background: linear-gradient(135deg, #1d89c0 0%, #1b3955 100%);
            color: white;
        }

        .partners .section-header h2,
        .partners .section-header p {
            color: white;
        }

        .partner-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .partner-type {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }

        .partner-type:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-5px);
        }

        .partner-type h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .partner-type p {
            opacity: 0.9;
            line-height: 1.6;
        }

        /* Footer */
        footer {
            background: #0d3a5c;
            color: white;
            padding: 3rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: #ecf0f1;
        }

        .footer-section p,
        .footer-section a {
            color: #bdc3c7;
            text-decoration: none;
            line-height: 1.8;
        }

        .footer-section a:hover {
            color: #1d89c0;
        }

        .footer-bottom {
            border-top: 1px solid #34495e;
            padding-top: 2rem;
            text-align: center;
            color: #95a5a6;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
                 margin: 40px 0 20px 0px;
               vertical-align: top;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .hero-features {
                justify-content: center;
                flex-wrap: wrap;
            }

            .estimation-form {
                padding: 0rem;
            }

            .header-content {
                flex-direction: column;
                gap: 1rem;
            }

            .steps {
                grid-template-columns: 1fr;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }

        /* Success message */
        .success-message {
            background: #d4edda;
            color: #155724;
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            border-left: 4px solid #28a745;
            display: none;
        }

        .error-message {
            background: #f8d7da;
            color: #721c24;
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            border-left: 4px solid #dc3545;
            display: none;
        }
        .justimo-header {
        width: 100%;
    max-width: 1200px;
    margin: 0 0 0 -20px;
      background: #2289bf;
      color: white;
      padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: visible;
      text-align: center;
    }

    .justimo-header h1 {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 15px;
    }
         
          .justimo-header h1a {
      font-size: 28px;
              color:#fff; 
      font-weight: 700;
      margin-bottom: 15px;
    }

    .justimo-header p {
      font-size: 16px;
      opacity: 0.9;
      margin-bottom: 10px;
    }

    .justimo-header p:last-child {
      font-size: 14px;
      opacity: 0.8;
    }

    /* Contenu */
    .justimo-content {
      padding: 24px;
      background: #fff;
    }

    /* Indicateur d'étape */
    .justimo-steps {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 24px;
    }

    .justimo-step-item {
      display: flex;
      align-items: center;
    }

    .justimo-step-dot {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #e2e8f0;
      color: #64748b;
      font-size: 14px;
      font-weight: 600;
      transition: all 0.3s;
    }

    .justimo-step-dot.active {
      background-color: #2289bf;
      color: white;
      transform: scale(1.1);
    }

    .justimo-step-dot.completed {
      background-color: #193a5c;
      color: white;
    }

    .justimo-step-line {
      height: 2px;
      width: 32px;
      background-color: #e2e8f0;
      margin: 0 4px;
    }

    .justimo-step-line.active {
      background-color: #193a5c;
    }

    /* Formulaires */
    .justimo-step {
      display: none;
      animation: fadeIn 0.4s ease;
    }

    .justimo-step.active {
      display: block;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .justimo-form-title {
      text-align: center;
      font-size: 24px;
      font-weight: 600;
      color: #1e293b;
      margin-bottom: 24px;
    }

    .justimo-form-group {
      margin-bottom: 16px;
    }

    .justimo-form-group label {
      display: block;
      font-size: 14px;
      font-weight: 500;
      color: #334155;
      margin-bottom: 6px;
    }

    .justimo-form-group input,
    .justimo-form-group select {
      width: 100%;
      padding: 12px;
      border: 1px solid #cbd5e1;
      border-radius: 6px;
      font-size: 16px;
      transition: all 0.2s;
    }

    .justimo-form-group input:focus,
    .justimo-form-group select:focus {
      outline: none;
      border-color: #3b82f6;
      box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    }

    .justimo-address-container {
      position: relative;
    }

    .justimo-suggestions {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      max-height: 200px;
      overflow-y: auto;
      background: white;
      border: 1px solid #cbd5e1;
      border-top: none;
      border-radius: 0 0 6px 6px;
      z-index: 10;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .justimo-suggestion-item {
      padding: 10px 12px;
      cursor: pointer;
      transition: background 0.2s;
      font-size: 14px;
    }

    .justimo-suggestion-item:hover {
      background: #f1f5f9;
    }

    .justimo-address-row {
      display: flex;
      gap: 8px;
    }

    .justimo-dpe-selector {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 8px;
    }

    .justimo-dpe-item {
      padding: 8px 16px;
      border-radius: 6px;
      color: white;
      cursor: pointer;
      font-weight: 500;
      transition: all 0.2s;
    }

    .justimo-dpe-item.selected {
      transform: scale(1.05);
      box-shadow: 0 0 0 2px white, 0 0 0 4px #3b82f6;
    }

    .justimo-dpe-a { background-color: #38a169; }
    .justimo-dpe-b { background-color: #84cc16; }
    .justimo-dpe-c { background-color: #eab308; color: #1e293b; }
    .justimo-dpe-d { background-color: #d97706; }
    .justimo-dpe-e { background-color: #ea580c; }
    .justimo-dpe-f { background-color: #dc2626; }
    .justimo-dpe-g { background-color: #991b1b; }
    .justimo-dpe-unknown { background-color: #94a3b8; color: #1e293b; }

    .justimo-radio-group {
      display: flex;
      gap: 16px;
    }

    .justimo-radio-option {
      flex: 1;
      position: relative;
    }

    .justimo-radio-option input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
    }

    .justimo-radio-option label {
      display: block;
      text-align: center;
      padding: 12px;
      background: #f1f5f9;
      color: #475569;
      border-radius: 6px;
      cursor: pointer;
      font-weight: 500;
      transition: all 0.2s;
    }

    .justimo-radio-option input:checked + label {
      background-color: #2289bf;
      color: white;
    }

    /* Boutons */
    .justimo-buttons {
      display: flex;
      gap: 12px;
      margin-top: 24px;
    }

    .justimo-button {
      padding: 14px 24px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-size: 16px;
      font-weight: 600;
      transition: all 0.2s;
      text-align: center;
    }

    .justimo-button-primary {
      background-color: #2289bf;
      color: white;
      flex: 1;
    }

    .justimo-button-primary:hover {
      background-color: #0f6c2e;
    }

    .justimo-button-outline {
      background-color: transparent;
      border: 1px solid #94a3b8;
      color: #475569;
    }

    .justimo-button-outline:hover {
      background-color: #f1f5f9;
    }

    /* Résultat */
    .justimo-result {
      text-align: center;
      padding: 32px 16px;
    }

    .justimo-result h3 {
      font-size: 24px;
      color: #1e293b;
      margin-bottom: 24px;
    }

    .justimo-estimation-value {
      font-size: 32px;
      font-weight: 700;
      color: #2289bf;
      margin-bottom: 16px;
    }

    .justimo-price-per-sqm {
      font-size: 18px;
      margin-bottom: 24px;
      color: #475569;
    }

    /* Loading */
    .justimo-loading {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 48px 0;
    }

    .justimo-spinner {
      width: 40px;
      height: 40px;
      border: 4px solid rgba(59, 130, 246, 0.1);
      border-radius: 50%;
      border-top-color: #2289bf;
      animation: spin 1s ease-in-out infinite;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* Erreur */
    .justimo-error {
      background-color: #fee2e2;
      border-left: 4px solid #dc2626;
      padding: 12px 16px;
      margin-bottom: 16px;
      border-radius: 4px;
      font-size: 14px;
      color: #b91c1c;
    }

    /* Footer */
    .justimo-footer {
      background: #f8fafc;
      padding: 16px;
      text-align: center;
      color: #64748b;
      font-size: 12px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .justimo-header h1 {
        font-size: 24px;
      }
      
      .justimo-header p {
        font-size: 14px;
      }
      
      .justimo-content {
        padding: 16px;
      }
      
      .justimo-form-title {
        font-size: 20px;
      }
      
      .justimo-estimation-value {
        font-size: 28px;
      }
    }
        /* Widget des villes */
        .cities-widget {
            flex: 1;
            background-color: #f8f9fa;
            border-radius: 5px;
           
            height: fit-content;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .cities-widget h3 {
            margin-top: 0;
            border-bottom: 2px solid #0d3a5c;
            padding-bottom: 10px;
            margin-bottom: 15px;
            color: #0d3a5c;
            font-size: 1.2em;
        }
        
        .cities-list {
            display: grid;
            grid-template-columns: repeat(3, 3fr);
            gap: 8px;
        }
        
        .cities-list a {
            color: #0d3a5c;
            text-decoration: none;
            padding: 8px;
            border-radius: 3px;
            transition: all 0.3s;
            font-size: 0.9em;
            display: block;
        }
        
        .cities-list a:hover {
            background-color: #e9ecef;
            font-weight: bold;
            transform: translateX(5px);
        }
         /* Responsive */
        @media (max-width: 768px) {
            .estimation-par-ville {
                padding: 0 15px;
            }
            
            .widget-content {
                flex-direction: column;
                gap: 20px;
            }
            
            .features {
                flex-direction: column;
                gap: 15px;
            }
            
            .feature-box {
                flex-basis: 100%;
            }
            
            .cities-list {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .content-section h2 {
                font-size: 1.5em;
            }
            
            .content-section h3 {
                font-size: 1.2em;
            }
        }
        /* CSS externe pour le widget estimation par ville - justimo-widget.css */

/* Reset et base pour le widget */
.estimation-par-ville * {
    box-sizing: border-box;
}

.estimation-par-ville {
    max-width: 1200px !important;
    margin: 0 auto !important;
    font-family: 'Arial', sans-serif !important;
    color: #333 !important;
    line-height: 1.6 !important;
    padding: 20px !important;
}

.estimation-par-ville .widget-content {
    display: flex !important;
    gap: 30px !important;
    align-items: flex-start !important;
}

.estimation-par-ville .content-section {
    flex: 2 !important;
}

.estimation-par-ville .content-section h2 {
    color: #0d3a5c !important;
    margin-bottom: 20px !important;
    font-size: 1.8em !important;
    font-weight: bold !important;
    line-height: 1.3 !important;
}

.estimation-par-ville .content-section h3 {
    color: #0d3a5c !important;
    margin-top: 25px !important;
    margin-bottom: 15px !important;
    font-size: 1.3em !important;
    font-weight: bold !important;
}

.estimation-par-ville .content-section p {
    margin-bottom: 15px !important;
    text-align: justify !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
}

.estimation-par-ville .content-section ul,
.estimation-par-ville .content-section ol {
    margin-bottom: 20px !important;
    padding-left: 20px !important;
}

.estimation-par-ville .content-section li {
    margin-bottom: 8px !important;
    font-size: 16px !important;
}

/* Features */
.estimation-par-ville .features {
    display: flex !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    margin: 40px 0 !important;
    gap: 20px !important;
}

.estimation-par-ville .feature-box {
    flex-basis: 30% !important;
    text-align: center !important;
    padding: 20px !important;
    background-color: #f8f9fa !important;
    border-radius: 5px !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important;
    border: 1px solid #e9ecef !important;
}

.estimation-par-ville .feature-box h3 {
    color: #0d3a5c !important;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
    font-size: 1.2em !important;
    font-weight: bold !important;
}

.estimation-par-ville .feature-box p {
    margin: 0 !important;
    font-size: 0.9em !important;
    text-align: center !important;
    line-height: 1.5 !important;
}

/* Widget des villes */
.estimation-par-ville .cities-widget {
    flex: 1 !important;
    background-color: #f8f9fa !important;
    border-radius: 5px !important;
    padding: 20px !important;
    height: fit-content !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important;
    border: 1px solid #e9ecef !important;
    min-width: 250px !important;
}

.estimation-par-ville .cities-widget h3 {
    margin-top: 0 !important;
    border-bottom: 2px solid #0d3a5c !important;
    padding-bottom: 10px !important;
    margin-bottom: 15px !important;
    color: #0d3a5c !important;
    font-size: 1.2em !important;
    font-weight: bold !important;
}

.estimation-par-ville .cities-list {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
}

.estimation-par-ville .cities-list a {
    color: #0d3a5c !important;
    text-decoration: none !important;
    padding: 8px !important;
    border-radius: 3px !important;
    transition: all 0.3s ease !important;
    font-size: 0.9em !important;
    display: block !important;
    border: 1px solid transparent !important;
}

.estimation-par-ville .cities-list a:hover {
    background-color: #e9ecef !important;
    font-weight: bold !important;
    transform: translateX(5px) !important;
    border-color: #0d3a5c !important;
}

/* Responsive */
@media (max-width: 768px) {
    .estimation-par-ville {
        padding: 15px !important;
    }
    
    .estimation-par-ville .widget-content {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .estimation-par-ville .features {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .estimation-par-ville .feature-box {
        flex-basis: 100% !important;
    }
    
    .estimation-par-ville .cities-list {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .estimation-par-ville .content-section h2 {
        font-size: 1.5em !important;
    }
    
    .estimation-par-ville .content-section h3 {
        font-size: 1.2em !important;
    }
}
        .cities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; margin-top: 30px; }
        .city-link { display: block; padding: 15px; background-color: #ecf0f1; text-decoration: none; color: #0d3a5c; border-radius: 5px; transition: all 0.3s; }
        .city-link:hover { background-color: #1d89c0; color: white; transform: translateY(-2px); }
  </style>