body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f5f5f5;
}
header {
    background-color: #8B4513; /* Couleur bois naturel */
    color: white;
    padding: 40px 0;
    text-align: center;
}
header h1 {
    margin: 0;
    font-size: 2.5em;
}
section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}
section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #8B4513;
}
section p {
    line-height: 1.6;
    margin-bottom: 20px;
}
.features, .specs, .brand {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.features div, .specs div {
    flex: 1 1 45%;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
}
.features div ul, .specs div ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.features div ul li, .specs div ul li {
    margin-bottom: 10px;
}
.cta {
    text-align: center;
}
.cta a, a.ctaLink {
    background-color: #8B4513;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
}
.cta a:hover, a.ctaLink:hover {
    opacity: 0.6;
}
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}
/* Section d'images du produit */
.gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.gallery img {
    width: 30%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
/* Section vidéo */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background-color: #f5f5f5;
    margin-bottom: 20px;
    border-radius: 8px;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.rating {
    text-align: center;
    margin-bottom: 20px;
}
.stars {
    display: inline-block;
    color: #FFD700; /* Couleur or pour les étoiles */
    font-size: 1.5em;
}
.reviews {
    font-size: 1em;
    color: #555;
}
@media (max-width: 768px) {
    .features div, .specs div {
        flex: 1 1 100%;
    }
    .gallery img {
        width: 100%;
        max-width: none;
    }
}