.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(to bottom, #2563eb, #1e40af);
    color: white;
}

.contact-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-container input,
.contact-container textarea {
    margin-bottom: 20px; /* Espacement entre les inputs */
}

.map-section {
    margin: 40px 0;
    text-align: center;
}

footer {
    background-color: #1e293b;
    color: white;
    padding: 20px;
    text-align: center;
}

footer a {
    color: #2563eb;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
.home-icon {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #0056b3;
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.8em;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 1.5s infinite;
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}
.home-icon:hover {
    background: #d9e722;
    transform: translateX(-50%) scale(1.1);
    animation: bounce 0.5s;
}
