* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

header {
    background-color: #333;
    padding: 20px;
    color: #fff;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
}

header nav ul li {
    margin: 0 20px;
}

header nav ul li a {
	color: #F63;
	text-decoration: none;
}

.accueil {
    background-color: #f5f5f5;
    padding: 50px 0;
}

.slider {
    display: flex;
    overflow: hidden;
    margin-bottom: 30px;
}

.slider .slide {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slider .button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
}

.video iframe {
    width: 100%;
    max-width: 560px;
    height: 315px;
    margin: 0 auto;
    display: block;
}

.about, .parc-auto, .contact {
    padding: 50px 0;
    text-align: center;
}

.car-category .cars {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.car img {
    width: 300px;
    height: 200px;
    object-fit: cover;
}

.contact form input, .contact form textarea {
    width: 80%;
    margin: 10px 0;
    padding: 10px;
}

.contact-info p {
    margin: 5px 0;
}

.map iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer .social-links a {
    margin: 0 15px;
    color: #fff;
    text-decoration: none;
}


/* RESET CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Couleurs principales */
:root {
    --primary-color: #f76c6c; /* Rouge vif */
    --secondary-color: #4caf50; /* Vert clair */
    --tertiary-color: #ffffff; /* Blanc */
    --background-color: #f4f4f4; /* Gris clair */
    --footer-bg-color:  #ffbd33	; /* Gris foncé pour le footer */
    --button-hover-color: #ff4081; /* Hover button color */
}

/* Global */
body {
    background-color: var(--background-color);
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    background-color: var(--tertiary-color);
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

nav .logo img {
    width: 150px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #333;
    font-size: 18px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Section Accueil */
.accueil {
    position: relative;
    height: 100vh;
    background: linear-gradient(to right, #f76c6c, #ffbc00);
    color: var(--tertiary-color);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    height: 100%;
}

.button {
    background-color: var(--primary-color);
    color: var(--tertiary-color);
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.button:hover {
    background-color: var(--button-hover-color);
}

/* Section À propos */
.about {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--tertiary-color);
}

.about h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.about p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.team {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.team img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-right: 20px;
}

.team p {
    font-size: 16px;
    color: #333;
}

/* Section Parc Auto */
.parc-auto {
    padding: 80px 20px;
    background-color: #f0f0f0;
}

.parc-auto h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.car-category {
    margin-bottom: 40px;
}

.car-category h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.cars {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.car {
    width: 30%;
    margin-bottom: 20px;
    position: relative;
}

.car img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.car:hover img {
    transform: scale(1.05);
}

.car .button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    border-radius: 30px;
    padding: 10px 20px;
}

/* Section Contact */
.contact {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--tertiary-color);
}

.contact h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

form input,
form textarea {
    width: 100%;
    padding: 12px 20px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    transition: border 0.3s ease;
}

form input:focus,
form textarea:focus {
    border: 1px solid var(--primary-color);
}

form button {
    background-color: var(--primary-color);
    color: var(--tertiary-color);
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: var(--button-hover-color);
}

/* Section Footer */
footer {
    background-color: var(--footer-bg-color);
    color: var(--tertiary-color);
    padding: 20px;
    text-align: center;
}

footer .social-links {
    margin-top: 10px;
}

footer .social-links a {
    color: var(--tertiary-color);
    font-size: 18px;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .social-links a:hover {
    color: var(--primary-color);
}

/* Carte Google Maps */
.map iframe {
    border: 0;
    width: 100%;
    height: 450px;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .team {
        flex-direction: column;
        align-items: center;
    }

    .car {
        width: 80%;
    }

    .swiper-slide {
        height: 60vh;
    }
}

@media (max-width: 480px) {
    .button {
        padding: 12px 25px;
        font-size: 16px;
    }

    .about p,
    .team p,
    .car-category h3 {
        font-size: 14px;
    }

    .cars {
        flex-direction: column;
        align-items: center;
    }

    .car {
        width: 80%;
    }
}

/* Section À propos */
.about {
    background-color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    color: #333;
}

.about .section-title {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.about p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.team {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.team-member {
    width: 250px;
    text-align: center;
    margin-bottom: 20px;
}

.team-member img {
    width: 100%;
    border-radius: 50%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-member h4 {
    font-size: 20px;
    color: var(--primary-color);
}

.team-member p {
    font-size: 16px;
    color: #777;
}

.testimonials {
    margin-top: 40px;
}

.testimonial {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-size: 18px;
}


/* Section Accueil avec Parallax */
.accueil {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/parallax-bg.jpg');
    background-size: cover;
    background-position: center;
    transform: translateZ(0);
    z-index: -1;
    animation: parallax 30s infinite linear;
}

@keyframes parallax {
    0% { transform: translateY(0); }
    100% { transform: translateY(-30%); }
}

.content {
    z-index: 1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.title {
    font-size: 48px;
    margin-bottom: 20px;
}

.button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: var(--button-hover-color);
}


/* Section Galerie des véhicules */
.car-gallery {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.car-gallery h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.car-category {
    margin-bottom: 80px;
}

.car-category h3 {
    font-size: 28px;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 30px;
}

.car-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
}

.car-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.car-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.car-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #ddd;
}

.car-info {
    padding: 20px;
}

.car-info h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.car-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.car-info .price {
    font-size: 18px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.reserve-btn {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.reserve-btn:hover {
    background-color: var(--button-hover-color);
}


/* Style pour la section de filtrage et tri */
.filter-sort {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.filter, .sort {
    display: flex;
    align-items: center;
}

.filter select, .sort select {
    padding: 8px;
    margin-left: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
}

.filter label, .sort label {
    font-size: 16px;
    color: var(--primary-color);
}

/* Réactivité pour les petits écrans */
@media (max-width: 768px) {
    .filter-sort {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter, .sort {
        margin-bottom: 10px;
    }
}


/* Style pour la modale */
.modal {
    display: none; /* Masquée par défaut */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    max-width: 600px;
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

h3 {
    text-align: center;
    margin-bottom: 20px;
}

input[type="text"],
input[type="email"],
input[type="date"],
textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: var(--secondary-color);
}

/* Style pour la galerie */
.car-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
}

.car-item {
    width: 300px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.car-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.car-item h4 {
    margin: 10px 0;
    font-size: 1.2em;
    color: #333;
}

.car-item p {
    color: #555;
}

.car-item button {
    margin: 10px 0;
    padding: 10px 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.car-item button:hover {
    background-color: #45a049;
}

.car-item:hover {
    transform: scale(1.05);
}

/* Style pour la modale */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    padding-top: 60px;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #aaa;
}

.close-btn:hover {
    color: black;
}


/* Section Nos Services */
#services {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #333;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service-item {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: scale(1.05);
}

.service-item i {
    font-size: 2.5em;
    color: #4CAF50;
    margin-bottom: 10px;
}

.service-item h3 {
    font-size: 1.5em;
    margin: 10px 0;
    color: #222;
}

/* Étapes du processus de réservation */
#process {
    padding: 50px 20px;
    background-color: #ffffff;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.step {
    background-color: #f1f1f1;
    border-radius: 8px;
    padding: 20px;
    width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.step i {
    font-size: 2.5em;
    color: #4CAF50;
    margin-bottom: 10px;
}

.step h4 {
    margin: 10px 0;
    font-size: 1.3em;
    color: #222;
}

/* Section FAQ */
#faq {
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.faq-item {
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
}

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.js"></script>


body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.parc-auto-container {
    max-width: 1200px;
    margin: 20px auto;
    text-align: center;
}

h1 {
    font-size: 2.5em;
    color: #333;
}

.car-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.car-card {
    background-color: white;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.car-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.car-card h2 {
    font-size: 1.5em;
    color: #333;
}

.car-card ul {
    list-style: none;
    padding: 0;
}

.car-card li {
    margin: 5px 0;
}

.price {
    font-size: 1.2em;
    font-weight: bold;
    color: #28a745;
}

.reserve-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.reserve-btn:hover {
    background-color: #0056b3;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 400px;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

h1 {
    text-align: center;
    margin: 20px 0;
    font-size: 2.5rem;
    color: #0056b3;
}

.parc-auto-container {
    width: 90%;
    margin: auto;
}

.car-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.car-card {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.car-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.car-card h2 {
    font-size: 1.5rem;
    margin: 10px 15px 5px;
}

.car-card p, .car-card ul, .car-card .price {
    margin: 10px 15px;
    font-size: 1rem;
    color: #555;
}

.car-card ul {
    padding-left: 20px;
}

.car-card .price {
    font-weight: bold;
    color: #0056b3;
}

.reserve-btn {
    display: block;
    width: 90%;
    margin: 10px auto 15px;
    padding: 10px 20px;
    background: #0056b3;
    color: white;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s;
}

.reserve-btn:hover {
    background: #003f8a;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background: #ffffff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #ddd;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.modal-content form label {
    font-size: 1rem;
    margin: 10px 0 5px;
    display: block;
}

.modal-content form input, .modal-content form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 1rem;
}

.modal-content form button {
    background: #0056b3;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.modal-content form button:hover {
    background: #003f8a;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}
.filter-container {
    text-align: center;
    margin: 20px 0;
}

#search-bar {
    width: 90%;
    max-width: 400px;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.modal-content form label {
    margin-top: 10px;
    font-weight: bold;
}

.modal-content form input {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.modal-content form input:focus {
    border-color: #0056b3;
    outline: none;
}


/* Styles généraux */
body {
  font-family: 'Open Sans', Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

/* Section Témoignages */
.testimonials-section {
  padding: 50px 20px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonials-section .section-title {
  text-align: center; /* Centre le titre */
  font-size: 2rem;
  color: #ff6600;
  margin-bottom: 20px;
  position: relative;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.testimonial {
  flex: 1 1 calc(50% - 20px);
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.testimonial p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 10px 0;
}

.stars {
  font-size: 1.2rem;
  color: #ffcc00;
  margin-top: 10px;
}

/* Section FAQ */
.faq-section {
  padding: 50px 20px;
  background-color: #f0f8ff;
}

.faq-section .section-title {
  text-align: center; /* Centre le titre */
  font-size: 2rem;
  color: #009688;
  margin-bottom: 20px;
  position: relative;
}

.faq-search {
  width: 100%;
  max-width: 600px;
  padding: 10px 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin: 0 auto 30px auto;
  display: block;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-search:focus {
  outline: none;
  border-color: #009688;
  box-shadow: 0 0 8px rgba(0, 150, 136, 0.5);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.faq-item h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
  text-align: center; /* Centre les sous-titres */
}

.faq-item p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}



/* Section Container */
.map-container {
    background-color: #f8f9fa;
    padding: 40px 20px;
    text-align: center;
    border-top: 3px solid #FFA500; /* Ligne de démarcation */
    border-bottom: 3px solid #FFA500;
    margin-top: 30px;
}

/* Section Title */
.section-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

/* Section Description */
.section-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    font-family: 'Open Sans', sans-serif;
}

/* Map Container */
.map {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}




/* Pied de page */
.footer {
    background-color: #333;
    color: #f8f9fa;
    padding: 40px 20px;
    text-align: center;
}

.footer-container {
    display: flex; /* Utilisation de flexbox pour l'alignement horizontal */
    justify-content: space-around; /* Espacement égal entre les sections */
    max-width: 1200px;
    margin: 0 auto;
}

/* Sections */
.footer-about, .footer-contact, .footer-links, .footer-social {
    flex: 1; /* Chaque section prend une largeur égale */
    margin: 0 20px; /* Espacement autour des sections */
}

/* Titres */
.footer-about h2, .footer-contact h3, .footer-links h3, .footer-social h3 {
    color: #FFA500; /* Couleur orange */
    margin-bottom: 10px;
}

/* Liens */
.footer-contact a, .footer-links a {
    color: #f8f9fa;
    text-decoration: none;
}

.footer-contact a:hover, .footer-links a:hover {
    text-decoration: underline; /* Soulignement au survol */
}

/* Liste des liens utiles */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 5px 0;
}

/* Section Réseaux sociaux */
.footer-social {
    display: flex; /* Flexbox pour aligner les icônes */
    justify-content: center; /* Centrer les icônes */
}

.social-icon {
    margin: 0 10px; /* Espacement entre les icônes */
}

.social-icon img {
    width: 44px; /* Taille uniforme des icônes */
    height: auto;
}

.social-icon:hover img {
    filter: brightness(0.8); /* Effet au survol */
}

/* Section Bas de page */
.footer-bottom {
    margin-top: 20px;
    font-size: 0.9rem;
    border-top: 1px solid #555;
    padding-top: 10px;
}




