body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 10px 150px;
    align-items: center;
}



.name {
  color: #003b5c;
  font-weight: bold;
}

.important {
  color: #FF00A8;
  font-weight: bold;
}

.text {
  text-align: center;
  flex-grow: 1;
  position: relative;
}

.line1 {
  color: #003b5c;
}

.line2 {
  margin: 0;
  color: #FF00A8;
  padding-left: 60px;  /*Décalage vers la droite pour la deuxième ligne */
}

.lang-link {
  display: inline-flex;
  align-items: center; /* Aligne l'image et le texte verticalement */
  text-decoration: none; /* Supprime le soulignement du lien */
}

.lang-link .flag {
  margin-right: 8px; /* Espace entre l'image et le texte (ajuste la valeur si nécessaire) */
}

.lang-link span {
  font-weight: bold; 
}

.language-selector a {
    margin-left: 10px;
}

.language-selector .flag {
    width: 20px;
    height: 15px;
}

/* Style de base pour le menu */
.menu-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #333;
    padding: 10px;
}

.menu-item {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.menu-item:hover {
    background-color: #444;
}

/* Style pour un menu horizontal sur tous les écrans */
@media (max-width: 768px) {
    .menu-container {
        flex-direction: row; /* Pour garder le menu horizontal */
    }

    .menu-item {
        padding: 12px 18px;
    }
}

.banner {
    padding: 20px;
    text-align: center;
}


section {
    margin-bottom: 40px;
}

.content {
    padding: 20px 100px;
}

.content section{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 60px;
    background-color: #f7f7f7; 
     flex-wrap: wrap; /* permet aux blocs de passer à la ligne */
}


.leftTextSection {
    flex: 1;
}

.textSection{
        flex: 0 0 100%;
}

h2 {
    color: #003b5c;
    font-size: 32px;
    margin-bottom: 15px;
}

h3 {
    color: #FF00A8;    
}

p {
    color: #555;
    margin-bottom: 20px;
    font-size: 1rem;      /* ≈ 16px */
    line-height: 1.6; 
}

.rightTextSection {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    flex-direction: column; /* C'est pour mettre les éléments en colonne */
}

.rightTextSection img {
    max-width: 100%;
    object-fit: cover;
}

.contact-form {
    display: flex;
    justify-content: space-between;
    margin: 20px 120px;
}

.form-content {
    width: 60%;
    padding-right: 20px;
}

.contact-info {
    width: 35%;
    padding-left: 20px;
    text-align: left;
}

.contact-info .contact-logo {
    width: 100%;
    height: 100px;
    margin-bottom: 80px;
}

.contact-info .address p {
    margin: 10px 0;
}

.contact-info a {
    color: #0066cc;
    text-decoration: none;
}

form input, form textarea, form select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    padding: 10px 20px;
    background-color: #e6007e; /* Pink color */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #cc0066;
}

