body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
  }
  .linknum{
    font-size: 30px;
  }
  .top-bar {
    background: #0076d7;
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
  }
  h2{
    color: #0076d7;
  }
  .navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  .logo {
    font-size: 24px;
    font-weight: bold;
    color: #222;
  }
  .logo img{
    width: 30%;
    padding-left: 35%;
    margin: auto;
  }
  
  .phone {
    font-size: 16px;
    font-weight: bold;
  }
  
  .burger {
    display: none;
    font-size: 24px;
    cursor: pointer;
  }
  
  .hero {
    text-align: center;
  }
  .hero img {
    width: 100%;
    height: auto;
  }
  .cta {
    display: inline-block;
    background: #0076d7;
    color: white;
    padding: 12px 24px;
    margin: 20px auto;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
  }
  
  .cleaning {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 20px;
    align-items: center;
    gap: 20px;
  }
  .cleaning img {
    flex: 1;
    max-width: 500px;
    width: 100%;
  }
  .text-block {
    flex: 1;
    min-width: 280px;
  }
  .text-block h2, .text-block h3 {
    margin: 10px 0;
  }
  
  .contact {
    background: #f4f4f4;
    padding: 40px 20px;
    text-align: center;
  }
  .contact address {
    font-style: normal;
    line-height: 1.8;
    margin: 20px 0;
  }
  .map iframe {
    width: 100%;
    height: 300px;
    border: none;
    margin-top: 20px;
  }
  
  footer {
    text-align: center;
    background: #222;
    color: white;
    padding: 15px 0;
    font-size: 14px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .cleaning {
      flex-direction: column;
      text-align: center;
    }
    .burger {
      display: block;
    }
  }
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    padding: 15px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  .logo {
    font-size: 24px;
    font-weight: bold;
  }
  .logo span {
    color: green;
  }
  
  /* MENU PC */
  .nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
  }
  .nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
  }
  .nav-links li a:hover {
    color: #0076d7;
  }
  
  /* MENU BURGER (MOBILE) */
  .burger {
    font-size: 24px;
    cursor: pointer;
    display: none;
  }
  
  /* MENU MOBILE CACHÉ PAR DÉFAUT */
  .nav-mobile {
    display: none;
    flex-direction: column;
    background: #f9f9f9;
    list-style: none;
    padding: 10px 0;
    margin: 0;
  }
  .nav-mobile li {
    padding: 10px 20px;
  }
  .nav-mobile li a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
  }
  .nav-mobile li a:hover {
    color: #0076d7;
  }
  
  /* RESPONSIVE */
  @media screen and (max-width: 768px) {
    .nav-links {
      display: none;
    }
  
    .burger {
      display: block;
    }
  
    .nav-mobile.active {
      display: flex;
    }
    .top-bar{
      width: 100%;
    }
  }