body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f9;
  margin: 0;
  padding: 0;
  text-align: center;
}

.logo {
  width: 200px;
  margin-top: 20px;
}

header {
  background-color: #141f5c;
  color: white;
  padding: 20px 0;
}

.contact form {
  display: flex;
  flex-direction: column;
  width: 80%;
  max-width: 500px;
  margin: auto;
}

.contact input, .contact textarea {
  margin: 10px 0;
  padding: 10px;
}

.contact button {
  background-color: #141f5c;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
}

.audio {
  padding: 20px;
}

.banner img {
  width: 100%;
  height: auto;
}
/* ===============================
   GRAND LOGO HEADER - DRONEMINE
   =============================== */

.brand{
  display:flex;
  align-items:center;
  gap:16px;
}

.logos{
  display:flex;
  gap:12px;
}

/* Boîte des logos */
.logoBox{
  width:70px;
  height:70px;
  border-radius:16px;
  background: rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.2);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  box-shadow:0 8px 25px rgba(0,0,0,0.35);
}

/* Image logo */
.logoBox img{
  width:100%;
  height:100%;
  object-fit:contain;
}

/* Texte marque */
.brandText strong{
  font-size:18px;
  letter-spacing:0.5px;
}

.brandText span{
  font-size:13px;
  opacity:0.85;
}

/* Responsive */
@media(max-width:768px){
  .brand{
    flex-wrap:wrap;
    justify-content:center;
    text-align:center;
  }

  .logos{
    justify-content:center;
  }
}
/* ====== DRONEMINE - GRAND LOGO GLOBAL (ALL PAGES) ====== */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brandLogo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brandLogo img {
  height: 56px;      /* grand logo */
  width: auto;
  display: block;
  object-fit: contain;
}

/* Mobile */
@media (max-width: 768px) {
  .brandLogo img {
    height: 46px;
  }
}
/* GRAND LOGO HEADER */
.logo img {
  height: 110px;
  width: auto;
}
@media (max-width:768px){
  .logo img{
    height:70px;
  }
}

