.about-header {
    background-image: url('truck-repair-banner.jpg'); 
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}
.about-header h1 {
    font-size: 3rem;
    margin: 0;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 10px;
}
.about-content {
    max-width: 90%;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.about-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}
.about-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.about-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}
.about-content ul {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
}
.about-content ul li {
    margin-bottom: 10px;
}

.truck-models-container{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.truck-model{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1%;
}
.truck-model img{
    height: 80px;
    width: 80px;
    border-radius: 100%;
}
.truck-model p{
    font-weight: bold;
}