.title{display:flex;flex-direction:column;justify-content:center;align-items:center;gap:10px;margin-bottom:20px}
.title h2{font-family:'Barlow Condensed',sans-serif;font-weight:900;font-size:clamp(32px,4vw,52px);text-transform:uppercase;letter-spacing:-1.5px;color:var(--white);line-height:.95}
.title h4{font-family:'Barlow Condensed',sans-serif;font-weight:700;font-size:18px;letter-spacing:1.5px;text-transform:uppercase;color:var(--grey1);margin-bottom:30px;text-align: center;}

.sieu-left p{font-family:'Barlow Condensed',sans-serif;font-weight:600;font-size:28px;letter-spacing:1.2px;color:var(--white);line-height:.95;margin-bottom:5px}

.sieu-right h4{font-family:'Barlow Condensed',sans-serif;font-weight:600;font-size:28px;letter-spacing:1.2px;color:var(--white);line-height:.95;margin-bottom:35px}

/* Formulaire style */
.contact-form {
    display: flex;
    flex-direction: column;
    border: 2px solid var(--red);
    border-radius: 8px;
    padding: 10px;
    background-color: var(--red);
    margin-top: 20px;
}
.contact-form label {
    margin-bottom: 10px;
}
.contact-form input {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
}
.contact-form textarea {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    height: 120px;
}
.contact-form button {
    padding: 10px 20px;
    background-color: var(--blue);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.contact-form button:hover {
    background-color: var(--blue3);
}
.name-fields {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: space-between;
}
.name-fields>div>label {
    margin-bottom: 10px;
}

/* Information de contact */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-info p {
    font-size: 16px;
    color: var(--white);
}
.contact-info strong {
    color: var(--red);
}
.contact-info a {
    color: var(--white);
    text-decoration: none;
}
.contact-info a:hover {
    text-decoration: underline;
}
.contact-info h4 {
    font-family:'Barlow Condensed',sans-serif;
    font-weight:600;
    font-size:20px;
    letter-spacing:1.2px;
    color:var(--white);
    line-height:.95;
    margin-bottom:15px;
    margin-top: 10px;
}