body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #ffffff;
    color: #333;
}

header {
    background: lch(44.83% 96.11 297.34 / 0.752);
    color: #fff;
    padding: 15px 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav a {
    color: #fff;
    text-decoration: none;
}

nav a.active {
    border-bottom: 2px solid #fff;
}

.hero {
    background: url('images/produit1.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.btn {
    background: lch(82.37% 40.89 221.92);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.produits {
    text-align: center;
    padding: 40px 20px;
}

.liste-produits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.produit {
    background: white;
    padding: 15px;
    border-radius: 8px;
    width: 250px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.produit img {
    width: 100%;
    border-radius: 8px;
}

footer {
    text-align: center;
    background: lch(0% 0 0);
    color: white;
    padding: 15px 0;
    margin-top: 30px;
}