.service-page {
max-width: 800px;
margin: 0 auto;
padding: 100px 10px;
}
.hero-section {
background: var(--color);
color: white;
padding: 35px;
border-radius: 6px;
text-align: center;
margin-bottom: 30px;
}
.hero-section h1 {
font-size: 2em;
margin-bottom: 10px;
}
.benefits-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 15px;
margin: 30px 0;
}
.benefit-item {
background: var(--white);
padding: 20px;
border-radius: 6px;
box-shadow: 1px 2px 1px lightgrey;
}
.benefit-item strong {
display: block;
margin-bottom: 10px;
}
.service-content {
background: var(--white);
padding: 30px;
border-radius: 6px;
margin: 30px 0;
text-align: left  ;
}
.service-content h2 {
margin-bottom: 20px;
}
.warning-signs {
background: #fff3cd;
border-left: 4px solid #ffc107;
padding: 15px;
margin: 20px 0;
border-radius: 6px;
}
.expertise-box {
background: var(--white);
padding: 25px;
border-radius: 6px;
margin: 25px 0;
box-shadow: 1px 2px 1px lightgrey;
text-align: left;
}
.motor-types {
display: flex;
gap: 10px;
flex-wrap: wrap;
margin: 15px 0;
}
.motor-type {
background: #e3f2fd;
padding: 8px 15px;
border-radius: 6px;
font-weight: 600;
color: #1565c0;
font-size: 0.9em;
}
.final-cta {
text-align: center;
background: var(--white);
padding: 25px;
border-radius: 6px;
margin-top: 30px;
}