body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Header (accueil, à propos, etc.) */
header {
    background-color: #00acc1; /* couleur bleu clair */
}

header h1 {
    font-size: 2.5rem;
}

header p {
    font-size: 1.2rem;
}

/* Sections */
section {
    padding: 60px 20px;
}

/* Pied de page */
footer {
    font-size: 0.9rem;
}

/* Menu actif */
.nav-link.active {
    font-weight: bold;
    color: #007bff;
}

/* Formulaire */
form {
    max-width: 600px;
    margin: auto;
}

input[type="text"],
input[type="email"],
textarea {
    border-radius: 0;
    border: 1px solid #ccc;
    padding: 10px;
}

button {
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0069d9;
}

/* Images dans la galerie ou produits */
img {
    max-width: 100%;
    height: auto;
}