    :root{--accent:#0b7cff;--muted:#6b7280;--card:#ffffff;--bg:#f6f7fb}
    *{box-sizing:border-box}
    body{font-family:Inter,ui-sans-serif,system-ui,Segoe UI,Roboto,"Helvetica Neue",Arial;color:#111827;background:var(--bg);margin:0}
    header{background:white;box-shadow:0 2px 6px rgba(16,24,40,.06)}
    .container{max-width:1100px;margin:0 auto;padding:10px}
    nav{display:flex;align-items:center;justify-content:space-between}
    .brand{display:flex;gap:12px;align-items:center}
    .brand img{height:64px;width:64px;border-radius:8px}
    .menu{display:flex;gap:18px}
    .menu a{color:var(--muted);text-decoration:none;font-weight:600}
    .hero h1{font-size:28px;margin:0 0 12px}
    .hero p{margin:0 0 18px;color:var(--muted)}
    .btn{background:var(--accent);color:white;padding:12px 18px;border-radius:10px;border:0;cursor:pointer;font-weight:700}
    .search-card{background:white;border-radius:12px;padding:18px;box-shadow:0 6px 18px rgba(11,124,255,.06)}
    .companies{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:18px;margin-top:24px}
    .card{background:var(--card);border-radius:12px;overflow:hidden;box-shadow:0 6px 18px rgba(16,24,40,.04)}
    .card img{width:100%;height:150px;object-fit:cover}
    .card-body{padding:14px}
    .card-body h3{margin:0 0 6px;font-size:16px}
    .rating{color:#f59e0b;font-weight:700}
    footer{padding:28px 0;color:var(--muted)}

    /* Section Accueil en 2 colonnes avec fond */
    #accueil {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 48px;
        background-image: url('./img/main-bg-top.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        min-height: 400px;
        border-radius: 12px;
        color: white;
        gap: 30px;
    }
    .highlight-text {display:block;margin-bottom:15px;color:var(--muted);font-size:30px;font-weight: 700;text-align: center;}

    .hero-left, .hero-right {
        flex: 1;
    }
    .hero-left h1, .hero-left p {
        color: white;
    }

    /* responsive */
    @media(max-width:720px){
      #accueil {
          flex-direction: column;
          padding: 24px;
      }
      .hero-right {
          margin-top: 20px;
      }
      .menu{display:none}
    }

    .hidden{display:none}
    .success{background:#ecfdf5;border:1px solid #bbf7d0;padding:14px;border-radius:8px;color:#065f46}
    label{display:block;margin-bottom:6px;color:var(--muted);font-size:13px}
    input,select,textarea{width:100%;padding:10px;border-radius:8px;border:1px solid #e6e9ef;font-size:14px}