h1 {
    color: black;
}
#map {
    height: 600px;
    width: 100%;
    margin-bottom: 20px;
}
.container {
    width: 90%;
    margin: auto;
    padding-top: 20px;
}
.custom-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: gray;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    border: 2px solid white;
}
#filters {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    padding: 10px;
    z-index: 1000;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    font-family: sans-serif;
}

/* Variables CSS pour la cohérence */
:root {
    --primary-color: #2D5A27;
    --secondary-color: #1E40AF;
    --accent-color: #059669;
    --background-color: #F8FAFC;
    --surface-color: #FFFFFF;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    --border-color: #E5E7EB;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    /* Couleurs DPE */
    --dpe-a: #00B04F;
    --dpe-b: #51C332;
    --dpe-c: #90C329;
    --dpe-d: #F5E11C;
    --dpe-e: #F19C1D;
    --dpe-f: #E8661D;
    --dpe-g: #D1001F;
  }
  
  /* Reset et base */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.5;
    color: var(--text-primary);
    background-color: var(--background-color);
    font-size: 16px;
  }
  
  /* Navigation */
  .navbar {
    background: var(--surface-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
  }
  
  .nav-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .nav-logo::before {
    content: "🏠";
    font-size: 28px;
  }
  
  .nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
  }
  
  .nav-item a {
    padding: 8px 16px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
  }
  
  .nav-item a:hover,
  .nav-item a.active {
    background-color: var(--primary-color);
    color: white;
  }
  
  .nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
  }
  
  .nav-toggle span {
    width: 24px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
  }
  
  /* Container principal */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px;
  }
  
  /* Typography */
  h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 24px;
  }
  
  h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
  }
  
  h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
  }
  
  p {
    line-height: 1.6;
    margin-bottom: 16px;
    color: var(--text-secondary);
  }
  
  /* Cards */
  .card {
    background: var(--surface-color);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
  }
  
  .card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 8px;
  }
  
  .btn-primary {
    background: var(--primary-color);
    color: white;
  }
  
  .btn-primary:hover {
    background: #245021;
    transform: translateY(-1px);
  }
  
  .btn-secondary {
    background: var(--secondary-color);
    color: white;
  }
  
  .btn-secondary:hover {
    background: #1D4ED8;
    transform: translateY(-1px);
  }
  
  .btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
  }
  
  .btn-outline:hover {
    background: var(--primary-color);
    color: white;
  }
  
  /* Forms */
  .form-container {
    background: var(--surface-color);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
  }
  
  .form-group {
    margin-bottom: 24px;
  }
  
  .form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
  }
  
  .form-input,
  .form-select,
  .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease;
  }
  
  .form-input:focus,
  .form-select:focus,
  .form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
  }
  
  .form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
  }
  
  .form-select[multiple] {
    background-image: none;
    padding-right: 16px;
    min-height: 120px;
  }
  
  /* Grid */
  .grid {
    display: grid;
    gap: 24px;
  }
  
  .grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  /* Hero section */
  .hero {
    text-align: center;
    padding: 64px 24px;
    background: linear-gradient(135deg, #F0FDF4 0%, #E6FFFA 100%);
  }
  
  .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 16px;
  }
  
  .hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
  }
  
  /* Feature cards */
  .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 48px 0;
  }
  
  .feature-card {
    text-align: center;
    padding: 32px 24px;
  }
  
  .feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
  }
  
  /* About page styles */
  .founders {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 48px 0;
  }
  
  .founder-card {
    text-align: center;
    padding: 32px;
  }

  .founder-avatar-container {
    position: relative;
    display: inline-block;
    margin: 0 auto 16px;
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .founder-avatar-container:hover {
    transform: scale(1.05);
  }
  
  .founder-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
  }

  .linkedin-icon {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    background: #0077B5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
  }

  .linkedin-icon svg {
    display: block;
    margin: auto;
  }

  .founder-avatar-container:hover .linkedin-icon {
    transform: scale(1.1);
    background: #005885;
  }
  
  /* Map container */
  .map-container {
    background: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 500px;
    position: relative;
  }
  
  .map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #E5E7EB, #F3F4F6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--text-secondary);
    font-size: 18px;
  }
  
  .map-placeholder::before {
    content: "🗺️";
    font-size: 64px;
    margin-bottom: 16px;
  }
  
  /* Results filters */
  .results-filters {
    background: var(--surface-color);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
  }
  
  .filter-group {
    margin-bottom: 16px;
  }
  
  .filter-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  
  .filter-tag {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
  }
  
  .dpe-tag {
    color: white;
  }
  
  .dpe-a { background: var(--dpe-a); }
  .dpe-b { background: var(--dpe-b); }
  .dpe-c { background: var(--dpe-c); }
  .dpe-d { background: var(--dpe-d); color: var(--text-primary); }
  .dpe-e { background: var(--dpe-e); }
  .dpe-f { background: var(--dpe-f); }
  .dpe-g { background: var(--dpe-g); }
  
  /* Responsive */
  @media (max-width: 768px) {
    .nav-menu {
      position: fixed;
      left: -100%;
      top: 72px;
      flex-direction: column;
      background-color: var(--surface-color);
      width: 100%;
      text-align: center;
      transition: 0.3s;
      box-shadow: var(--shadow);
      padding: 24px 0;
    }
  
    .nav-menu.active {
      left: 0;
    }
  
    .nav-item {
      margin: 8px 0;
    }
  
    .nav-toggle {
      display: flex;
    }
  
    .hero h1 {
      font-size: 2.5rem;
    }
  
    .hero {
      padding: 48px 16px;
    }
  
    .container {
      padding: 24px 16px;
    }
  
    .form-container {
      padding: 24px;
    }
  
    .founders {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 480px) {
    .hero h1 {
      font-size: 2rem;
    }
    
    h1 {
      font-size: 2rem;
    }
    
    .form-container {
      padding: 16px;
    }
  }
  
  /* Utilities */
  .text-center { text-align: center; }
  .text-large { font-size: 1.125rem; }
  .text-small { font-size: 0.875rem; }
  .mb-0 { margin-bottom: 0; }
  .mb-8 { margin-bottom: 8px; }
  .mb-16 { margin-bottom: 16px; }
  .mb-24 { margin-bottom: 24px; }
  .mb-32 { margin-bottom: 32px; }
  .mt-16 { margin-top: 16px; }
  .mt-24 { margin-top: 24px; }
  .mt-32 { margin-top: 32px; }