/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    margin: 0 auto;
}

h1, h2, h3, h4 {
    color: #333;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    background-color: #333;
    color: white;
    padding: 10px 0;
}

header .logo h1 {
    font-size: 30px;
    margin: 0;
}

header nav ul {
    display: flex;
    justify-content: flex-end;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: white;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: url('truck-repair.jpg') no-repeat center center/cover;
    background-color: #f8a227;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-text h2 {
    font-size: 2.5rem;
}

.hero-text .cta-btn {
    background-color: black;
    color: white;
    padding: 10px 20px;
    font-size: 1.1rem;
    border-radius: 5px;
    margin-top: 15px;
}

.hero-text .cta-btn:hover {
    background-color: black;
}

/* Services Section */
.services {
    background-color: #fff;
    padding: 50px 0;
}

.services .service-list {
    display: flex;
    justify-content: space-around;
}

.services .service {
    width: 22%;
    text-align: center;
}

.services .service h3 {
    margin-bottom: 10px;
}

.services .service p {
    color: #666;
}

/* About Section */
.about {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.about p {
    line-height: 1.6;
    color: #555;
}

/* Testimonials Section */
.testimonials {
    padding: 50px 0;
    background-color: #fff;
}

.testimonials .testimonial {
    margin-bottom: 30px;
}

.testimonials p {
    font-style: italic;
    color: #444;
}

.testimonials h4 {
    margin-top: 10px;
    color: #333;
}

/* Contact Section */
.contact {
    padding: 50px 0;
    background-color: #f4f4f4;
}

.contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact input, .contact textarea {
    width: 100%;
    max-width: 600px;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact button {
    background-color: #f8b400;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact button:hover {
    background-color: #e09800;
}

/* Footer Section */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services .service-list {
        flex-direction: column;
        align-items: center;
    }

    .services .service {
        width: 80%;
        margin-bottom: 20px;
    }
}
form input, form textarea {
    display: block;
    margin-bottom: 10px;
    width: 300px;
}