﻿body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px;
    background-color: #ffffff; /* Fond blanc */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* Optionnel : petit effet d'ombre */	
    background: #0073e6;
    text-align: center;
}
header h1{
	color: white;
}

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

    nav ul li {
        display: inline;
        margin: 0 15px;
    }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }

#hero {
    text-align: center;
    padding: 50px;
    background: #0073e6;
    color: white;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: white;
    color: #0073e6;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

#services, #about, #contact {
    padding: 50px;
    text-align: center;
    background: white;
    margin: 20px;
    border-radius: 10px;
}

.service {
    background: #e6f2ff;
    padding: 20px;
    margin: 10px;
    border-radius: 5px;
    display: inline-block;
    width: 30%;
}

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

button {
    background: #0073e6;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}
#user-input {
    border: none;
    padding: 10px;
    width: 80%;
}

#send-btn {
    width: 20%;
    background: #0073e6;
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
}
#cookie-banner {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: #0073e6;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

    #cookie-banner button {
        background: white;
        color: #0073e6;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        margin-left: 10px;
        font-weight: bold;
    }
#social-media {
    text-align: center;
    margin-top: 10px;
}

#social-media a {
    display: inline-block;
    margin: 0 10px;
}

#social-media img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

#social-media img:hover {
    transform: scale(1.2);
}

#logo {
    width: 80px; /* Ajustez la taille selon vos besoins */
    height: auto;
    margin-right: 15px; /* Espacement entre le logo et le texte */
    vertical-align: middle;
	background-color: white;
}

h1 {
    font-size: 24px; /* Ajustez la taille du texte */
    margin: 0;
}
#logo-container {
    background-color: white; /* Fond blanc */
    padding: 5px; /* Espacement autour du logo */
    border-radius: 5px; /* Arrondir légèrement */
    display: flex;
    align-items: center;
}
section {
    margin-left: 20px;
}
