body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #e3e3e3;
}
.images-text {
    position: relative;
    width: 100%;
    height: 300px;
    background-image: url(../images/gizeh.jpg);
    box-shadow: 0px 5px 7px 0px rgba(0,0,0,0.75);
    object-fit: cover; 
    background-size: cover;
    background-position: center;
}

.images-text h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3em;
    font-family: 'Georgia', serif;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.contenue {
    max-width: 90%;
    margin: 2rem auto;
    padding: 0 1rem;
}

.titre {
    font-size: 1.5em;
    font-weight: bold;
    text-align: left;
    background-color: #c7c7c7;
    padding: 0.7em;
    margin-right: 58%;
    margin-left: 3%;
    border-radius: 0.1em;
    color: #000000;
    text-align: center;
    letter-spacing: 1px;
}

.titre2 {
    font-size: 1em;
    font-weight: bold;
    text-align: left;
    background-color: #c7c7c7;
    padding: 0.7em;
    margin-right: 58%;
    margin-left: 3%;
    border-radius: 0.1em;
    color: #000000;
    text-align: center;
    letter-spacing: 1px;
}

.contenue-text {
    display: flex;
    justify-content: space-between;
    gap: 2em;
    margin-bottom: 2em;
}

.text {
    background-color: #f4f4f4;
    padding: 1.5em;
    border-radius: 0.4em;
    flex: 1;
    line-height: 1.7em;
}

.citation {
    background-color: #f4f4f4;
    padding: 1.5em;
    border-radius: 0.4em;
    font-style: italic;
    text-align: right;
}

.auteur {
    font-family: Arial, sans-serif;
    font-style: normal;
}

.bottom-section {
    display: flex;
    justify-content: space-between;
    gap: 2em;
}

.avis, .contact-form {
    background-color: #f4f4f4;
    padding: 1.5em;
    border-radius: 0.4em;
    flex: 1;
}

.avis ul {
    list-style: none;
    padding: 0;
}

.avis li {
    margin-bottom: 1em;
    border-bottom: 1px solid #ccc;
    padding-bottom: 2em;
    position: relative;
}

.avis .clara::after {
    content: " - Clara"; 
    font-family: Arial, sans-serif;
    font-style: italic;
    color: #555;
    position: absolute;
    right: 0;
}

.avis .Guillaume::after {
    content: " - Guillaume"; 
    font-family: Arial, sans-serif;
    font-style: italic;
    color: #555;
    position: absolute;
    right: 0;
}

.avis .Lorenzo::after {
    content: " - Lorenzo"; 
    font-family: Arial, sans-serif;
    font-style: italic;
    color: #555;
    position: absolute;
    right: 0;
}

.avis .Roberto::after {
    content: " - Roberto"; 
    font-family: Arial, sans-serif;
    font-style: italic;
    color: #555;
    position: absolute;
    right: 0;
}

.avis .Tara::after {
    content: " - Tara"; 
    font-family: Arial, sans-serif;
    font-style: italic;
    color: #555;
    position: absolute;
    right: 0;
}

h2 {
    font-family: 'Georgia', serif;
    font-size: 1.5em;
    color: #2c2c2c;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid #787878;
    padding-bottom: 0.4em;
    margin-bottom: 0.8em;
}

form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
form label {
    display: block;
    margin: 10px 0 5px;
}
form input, form textarea, form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
form button {
    background-color: #7d7d7d;
    color: white;
    border: none;
    cursor: pointer;
}
form button:hover {
    background-color: #636363;
}

footer {
    background-color: #222222;
    padding: 1em;
    color: white;
    text-align: center;
    font-size: 0.9em;
    margin-top: 2em;
}

footer p {
    margin: 0em;
}
