/* 🌟 HERO SECTION */
.energies-page{
    width: 90vw;
    margin-top: 2rem;
    margin-bottom: 4rem;
    background-color: #faf2e7;
    font-family: 'Montserrat', sans-serif;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(122, 92, 80, 0.15);
}

.energies-intro,
.typologies-energies,
.produits-energies,
.articles-energies,
.formulaire-question {
    padding: 60px 20px;
    text-align: center;
}

.energy-types {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.energy-card {
    background: #faf2e7;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    max-width: 300px;
}

.produits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.articles-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.article-card {
    background: white;
    padding: 15px;
    border-left: 5px solid #d08f7b;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}



/* 📱 RESPONSIVE */
@media screen and (max-width: 768px) {
    .hero-energies h1 {
        font-size: 3rem;
    }
    .energy-types {
        flex-direction: column;
        align-items: center;
    }
}
