.elementor-2043 .elementor-element.elementor-element-cdcd982{--display:flex;--background-transition:0.3s;}:root{--page-title-display:none;}@media(max-width:1024px){body.elementor-page-2043{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}}/* Start custom CSS */.pricing {
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centre horizontalement tout le contenu */
}

.pricing h2 {
  font-size: 2.5rem;
  color: #E40037;
  
  margin-bottom: 40px;
  text-align: center; /* Sécurité */
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: nowrap;
}

.card {
  background: black;
  border: 2px solid #E40037;
  border-radius: 15px;
  padding: 50px;
  color: white;
  width: 300px;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(255,0,0,0.3);
  
}

.card h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: white;
  text-shadow: 0 0 5px #E40037;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card li {
  margin: 10px 0;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
}

.card li span {
  color: #E40037;
  font-weight: bold;
}

/* Hover effet néon sans déplacement */
.card:hover {
  box-shadow: 0 0 20px #E40037, 0 0 40px #E40037;
}

/* Conteneur bouton unique centré */
.pricing-contact {
  margin-top: 40px;
  display: flex;
  justify-content: center; /* Centre le bouton horizontalement */
  width: 100%;
}

.btn-contact {
  display: inline-block;
  padding: 12px 28px;
  color: white;
  text-decoration: none;
  border: 2px solid #E40037;
  border-radius: 8px;
  transition: 0.3s;
  text-shadow: 0 0 5px #E40037;
}

.btn-contact:hover {
  background: #E40037;
  box-shadow: 0 0 20px #E40037, 0 0 40px #E40037;
}

/* Responsive tablette */
@media screen and (max-width: 1024px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .card {
    width: 80%;
    max-width: 400px;
  }
}

/* Responsive mobile */
@media screen and (max-width: 600px) {
  .card {
    width: 90%;
  }
}/* End custom CSS */