h1 {
font-size: 28px;
text-align: center;
color: var(--white);
}
.batterie-page {
max-width: 1260px;
margin: 0 auto;
padding: 100px 20px;
}
.hero-batterie {
background: linear-gradient(135deg, var(--noir) 0%, var(--gris) 100%);
color: var(--white);
padding: 30px;
border-radius: 6px;
text-align: center;
margin-bottom: 30px;
}
.hero-batterie h1 {
margin-bottom: 15px;
padding-bottom: 0;
}
.hero-batterie p {
opacity: 0.95;
}
.content-section {
background: var(--white);
padding: 30px;
border-radius: 6px;
margin-bottom: 30px;
box-shadow: 1px 2px 1px lightgrey;
text-align: left;
}
.content-section h2 {
color: var(--color2);
margin-bottom: 20px;
padding-bottom: 0;
}
.process-list {
background: var(--carte);
padding: 20px;
border-radius: 6px;
margin: 20px 0;
}
.process-list ul {
margin: 0;
padding-left: 20px;
}
.process-list li {
margin: 10px 0;
color: var(--gris);
line-height: 1.5;
}
.avantages-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin: 25px 0;
}
.avantage-simple {
text-align: center;
padding: 20px;
}
.avantage-title {
color: var(--color2);
font-weight: 600;
margin-bottom: 10px;
font-size: 1.1em;
}
.avantage-text {
color: var(--gris);
line-height: 1.5;
}
.economie-highlight {
background: #e8f5e8;
border-left: 4px solid #4caf50;
padding: 20px;
margin: 25px 0;
border-radius: 6px;
text-align: center;
}
.economie-highlight .big-number {
font-size: 2.5em;
font-weight: bold;
color: #2e7d32;
display: block;
}
.economie-highlight .description {
color: #2e7d32;
font-weight: 600;
margin-top: 5px;
}
.ecologie-section {
background: #e8f5e8;
border-left: 4px solid #4caf50;
padding: 25px;
border-radius: 6px;
margin: 30px 0;
}
.ecologie-section h3 {
color: #2e7d32;
margin-bottom: 15px;
}
.ecologie-section p {
color: #2e7d32;
line-height: 1.6;
}
.cta-section {
background: var(--color);
color: white;
padding: 30px;
border-radius: 6px;
text-align: center;
margin: 40px 0;
}
.cta-section h2 {
margin-bottom: 15px;
color: white;
padding-bottom: 0;
}
.cta-section p {
margin-bottom: 20px;
opacity: 0.95;
}
.faq-item {
    margin: 15px 0;
    border-bottom: 1px solid var(--border);
}
.faq-summary {
    padding: 15px 0;
    cursor: pointer;
    font-weight: 600;
    color: var(--color2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-content {
    padding: 15px 0;
    color: var(--gris);
    line-height: 1.6;
}