.hero {
    background: url('path_to_your_hero_image.jpg') no-repeat center center/cover;
    min-height: 70vh; /* Use min-height instead of height to allow flexibility */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 0;
    box-sizing: border-box;
}

.hero h1 {
    color: #EFCC2F;
    font-size: 48px;
    margin: 0;
}

.hero p {
    font-size: 24px;
    margin: 10px 0 0;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    font-size: 16px;
    color: #282828;
    background-color: #EFCC2F;
    border: none;
    border-radius: 5px;
    text-decoration: none;
}

.content {
    padding: 50px 20px;
    text-align: center;
    box-sizing: border-box;
}

.product {
    margin: 20px 0;
}

.product img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-details {
    max-width: 600px;
    margin: 0 auto;
}

.product-details img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-details h1 {
    color: #EFCC2F;
    font-size: 36px;
    margin: 20px 0;
}

.product-details p {
    font-size: 18px;
    margin: 20px 0;
}

.product-details h2 {
    color: #EFCC2F;
    font-size: 24px;
    margin: 20px 0;
}

/* Nouveaux styles pour les images ajoutées */
.decor-image {
    display: block;
    max-width: 600px;  /* Limiter la largeur maximale */
    width: 80%;        /* Ajuster la largeur pour être responsive */
    height: auto;
    margin: 20px auto;
    border-radius: 8px;
}

.product-image-small {
    display: block;
    max-width: 100px;  /* Réduire la largeur maximale encore plus */
    width: 25%;        /* Ajuster la largeur pour être responsive */
    height: auto;
    margin: 20px auto;
    border-radius: 8px;
}

.highlight {
    font-size: 1.2em;
    font-weight: bold;
    color: #FF5733; /* Une couleur accrocheuse pour attirer l'attention */
    text-align: center;
    margin-top: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero {
        min-height: 50vh; /* Adjust height for smaller screens */
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    .content {
        padding: 20px;
    }

    .product img {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 40vh; /* Adjust height for smallest screens */
        padding: 10px 0; /* Reduce padding */
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 16px;
    }

    .btn {
        font-size: 12px;
        padding: 6px 12px;
    }

    .content {
        padding: 10px;
    }

    .product img {
        max-width: 70%;
    }

    .decor-image {
        width: 100%; /* Make decor image full width */
    }
}
