/* Style CSS avec les nouvelles couleurs et menu sous le logo */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f2f2f2;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #d32f2f;
    color: white;
    text-align: center;
    padding: 15px;
}

header .logo {
    flex: 1;
}

header .logo img {
    max-width: 150px;
    height: auto;
}

header .contact-info {
    flex: 1;
    text-align: right;
}

nav {
    background-color: #b71c1c;
    color: white;
    text-align: center;
    padding: 10px;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav li {
    display: inline-block;
    margin: 0 10px;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #8c1919;
}

.container {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
}

.photo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.photo img {
    max-width: 300px; /* Ajuster la largeur selon les exigences */
    height: auto;
    border-radius: 5px;
}

.text {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 5px;
    margin-top: 10px;
}

footer {
    background-color: #d32f2f;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}
