/* Import police */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #FFFFFF;
  color: #333;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

/* Conteneur principal */
.container {
  max-width: 600px;
  width: 100%;
}

/* Logo */
.logo {
  width: 150px;
  max-width: 80%;
  height: auto;
  margin-bottom: 20px;
}

/* Titre */
h1 {
  font-size: 2rem;
  color: #ed0000; /* Rouge */
  margin-bottom: 10px;
}

/* Paragraphe */
p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  padding: 0 10px;
}

/* Call to Action */
.cta-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.cta {
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1rem;
  display: inline-block;
  width: fit-content;
}

/* Bouton Téléphone */
.cta.phone {
  background-color: #ed0000;
  color: #fff;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
}
.cta.phone:hover {
  background-color: #ca9a5f;
}

/* Bouton Email */
.cta.mail {
  background-color: #ca9a5f;
  color: #fff;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
}
.cta.mail:hover {
  background-color: #ed0000;
}

/* Responsive design */
@media (max-width: 480px) {
  h1 {
    font-size: 1.6rem;
  }
  p {
    font-size: 1rem;
  }
  .cta {
    font-size: 0.9rem;
    padding: 10px 16px;
  }
}
