body {
    font-family: 'Poppins', sans-serif; 
    
}
 
h1 {
    color: #38b6ff;
    text-align: center;
   border-bottom: none;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
h4 {
    color: #38b6ff;
    margin-top: 0;
}
/* Conserve cette couleur pour la mise en évidence des infos fixes */
.info-fixed {
    background-color: rgba(255, 255, 255, 0.2); 
    border-left: 5px solid #38b6ff;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 4px;
}
.saisie-section label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    font-size: 13px;
}
input[type="number"],
#formulaireContact input[type="text"], 
#formulaireContact input[type="email"] {
    width: 60%;
    padding: 10px;
    margin-top: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
    display: block; 
}
button {
    background-color: #38b6ff;
    color: white;
    padding: 10px 15px;
    margin-top: 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: background-color 0.3s;
    width: 50%;
}
button:hover {
    background-color: #0056b3;
}
/* Conserve cette couleur pour la mise en évidence du résultat */
.result-section {
    margin-top: 30px;
    padding: 20px;
    border-left: 5px solid #38b6ff;
    background-color: rgba(255, 255, 255, 0.2); 
    
}
.row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 5px;
    
}
@media (min-width: 1200px) {
.row.total {
    font-size: 13px;
    font-weight: bold;
    padding-top: 10px;
    border-top: 2px solid #38b6ff;
    margin-bottom: 15px;
}
.final-result {
    color: #38b6ff;
    font-size: 13px;
}
.label-cell {
    flex-basis: 70%;
    font-size: 13px;
}
.value-cell {
    flex-basis: 30%;
    text-align: right;
    font-size: 13px;
}
}

.choice-section {
    padding: 15px;
    /* Retiré la bordure et le fond pour se fondre dans le template */
    border: none; 
    background: transparent;
    border-radius: 4px;
    margin-bottom: 25px;
}
.choice-section label {
    font-weight: normal;
    font-size: 13px;
    display: inline-block;
    margin-right: 20px;
    cursor: pointer;
}
.choice-section input[type="radio"]{
    margin-right: 5px;
}

/* Rendre le bloc formulaire transparent aussi */
#formulaireContact {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
}

#formulaireContact label {
    font-size: 13px;
    font-weight: bold;
    margin-top: 15px;
    display: block;
}
@media (max-width: 1199px) {
    .row.total {
    font-size: 13px;
    font-weight: bold;
    padding-top: 10px;
    border-top: 2px solid #38b6ff;
    margin-bottom: 15px;
}
.final-result {
    color: #38b6ff;
    font-size: 13px;
}
.label-cell {
    flex-basis: 60%;
    font-size: 13px;
}
.value-cell {
    flex-basis: 40%;
    text-align: right;
    font-size: 13px;
}
}