html, body {
    height: 100%;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

body {
    display: flex;
    flex-direction: column;
    background-image: url('/images/image9.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}

header {
    background-color: rgba(0, 119, 182, 0.9);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 50px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 700;
}

nav ul li a:hover {
    color: #d4f1f9;
}

.home-icon {
    height: 40px;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
}

.hero {
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #0077b6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 1.5em;
    max-width: 600px;
    margin: 0 auto;
    color: #555;
}

footer {
    background-color: #0077b6;
    color: white;
    text-align: center;
    padding: 1rem;
    width: 100%;
}

/* Style pour le widget de traduction */
#google_translate_element {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}
