/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left h1 {
    font-size: 2em;
    margin: 0;
}

.header-right p {
    font-size: 1.2em;
    margin: 0;
}

nav {
    background-color: #4CAF50;
    text-align: center;
    padding: 10px 0;
}

nav a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 5px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #45a049;
}

main {
    flex: 1;
    padding: 20px;
}

.section {
    margin-bottom: 40px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse; /* Inverse l'ordre des colonnes */
}

.content-text {
    flex: 1;
    padding: 0 20px;
}

.content-text h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.content-text p {
    line-height: 1.6;
}

.content-image {
    flex: 1;
    text-align: center;
}

.content-image img {
    max-width: 100%;
    height: auto;
}

.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%; /* Ratio 16:9 pour responsive */
    position: relative;
    height: 0;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

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