body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 600px;
    margin: auto;
    position: relative;
    padding: 20px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1 {
    color: #333;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background: #5cb85c;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background: #4cae4c;
}

.contact-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.contact-button:hover {
    background: #0056b3;
}

.language-form {
    position: absolute;
    top: 20px;
    right: 20px;
}

.language-form select {
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 16px;
    cursor: pointer;
    /*background-image: url('images/france.png');*/ /* Replace with appropriate CSS background or flag images */
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.language-form select:focus {
    border-color: #007bff;
    outline: none;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #f4f4f4;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
}