/* 
    Crée par MyHomeSystem, Seiroth/Benoit
     ____  __   __  ____
    |  __||  | |  ||  __|
    | |__ |  |_|  || |__
    |__  ||__   __||__  |
     __| |   | |    __| |
    |____|   |_|   |____|
    Copyright © My Home System informatique © 2024 -SystemCorp – Tous droits reservés.
    Marques commerciales deposées par © My Home System informatique, par le biais de son propriétaire Ritzzo Benoit.
*/
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
}

header {
    background: #f8f8f8;
    padding: 20px 0;
    border-bottom: 2px solid #e0e0e0;
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

h1 {
    margin: 0;
    font-size: 24px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-right: 20px;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    display: block;
    padding: 10px;
}

nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #f8f8f8;
    padding: 10px 0;
    list-style: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

nav ul li ul li {
    margin: 0;
}

nav ul li ul li a {
    padding: 10px 20px;
    width: 200px;
}

nav ul li:hover ul {
    display: block;
}

.hero {
    background: #e0e0e0;
    padding: 60px 0;
    text-align: center;
}

.hero h2 {
    margin: 0 0 20px 0;
    font-size: 36px;
}

.hero p {
    font-size: 18px;
    color: #666;
}

.contact-form {
    padding: 60px 0;
    background: #f8f8f8;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

.contact-form form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    flex: 1;
}

.contact-form .checkbox-group {
    display: flex;
    align-items: center;
}

.contact-form .checkbox-group input[type="checkbox"] {
    margin-right: 10px;
}

.contact-form label {
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form button {
    padding: 15px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
}

.contact-form button:hover {
    background: #555;
}

.contact-info {
    padding: 60px 0;
    background: #fff;
}

.contact-info h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

.contact-info p {
    text-align: center;
    font-size: 18px;
}

.map-section {
    padding: 60px 0;
    background: #fff;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

.contact-form p a {
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #333;
}

.contact-form p a:hover {
    text-decoration: underline;
}

.center-text {
    text-align: center;
    margin-top: 20px;
}

footer {
    background-color: #e0e0e0;
    padding: 10px 0;
    text-align: center;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer p {
    margin: 5px 0;
    font-size: 14px;
}

footer p a {
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #333;
}

footer p a:hover {
    text-decoration: underline;
}

.center-text p {
    text-align: center;
}
