body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffcc00; /* Couleur de fond vive */
}

header {
    background-color: #ff6600; /* Couleur d'arrière-plan de l'en-tête */
    text-align: center;
    padding: 20px;
    border: 3px solid #ff0000; /* Bordure rouge autour de l'en-tête */
}

.title-box {
    border: 2px solid #ff0000; /* Bordure rouge autour du titre */
    padding: 10px;
    display: inline-block;
}

.title-box h1 {
    margin: 0;
    color: #ffffff; /* Texte blanc pour le titre */
    font-size: 2em;
    text-transform: uppercase;
}

header .phone {
    font-size: 1.2em;
    margin: 10px 0;
    color: #ffffff; /* Texte blanc pour les coordonnées */
}

nav.right-menu {
    text-align: center; /* Alignement du texte du menu au centre */
    margin-top: 10px;
}

nav.right-menu a.button {
    display: inline-block;
    background-color: #ff3300; /* Couleur de fond des boutons */
    color: #ffffff; /* Texte blanc pour les boutons */
    padding: 10px 20px;
    margin: 5px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav.right-menu a.button:hover {
    background-color: #cc3300; /* Couleur de fond des boutons au survol */
}

main {
    padding: 20px;
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.content .text {
    max-width: 400px;
    margin: 20px;
    line-height: 1.6;
}

.content img {
    max-width: 400px;
    margin: 20px;
}

footer {
    background-color: #ff6600; /* Couleur d'arrière-plan du pied de page */
    color: #ffffff; /* Texte blanc pour le pied de page */
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.keyword {
    font-size: 1.5em;
    font-weight: bold;
    color: #ff0000; /* Couleur vive pour les mots-clés */
}
