/** @format */
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fond dégradé */
body {
  font-family: Arial, sans-serif;
  background: white;
  color: black;
  text-align: center;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  max-width: 900px;
  padding: 20px;
}

/* Logo principal */
.main-logo {
  width: 200px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 14px;
  color: #00000095;
  margin-bottom: 30px;
}

.title {
  font-size: 20px;
  margin-bottom: 40px;
  font-weight: bold;
}

/* Logos côte à côte */
.logos {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.logo-block {
  text-align: center;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-block img {
  width: 150px;
  height: 100px !important;
  object-fit: contain;
  height: auto;
  margin-bottom: 15px;
}

/* Boutons */
.btn {
  display: inline-block;
  background: #a91111;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #ba2828;
}
