* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

header {
    background: #f4f4f4;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    max-height: 50px;
}

header nav ul {
    list-style: none;
    display: flex;
}

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

header nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

header nav ul li a.btn {
    background: #f5c518; /* Yellow from van image */
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
}

.banner {
    position: relative;
    text-align: center;
}

.banner-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.banner-text h1 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: rgba(0, 0, 0, 0.5);
}

.banner-text p {
    font-size: 1em;
    margin-bottom: 20px;
    color: lightyellow;
}

.btn {
    background: #f5c518;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}

section {
    padding: 40px 20px;
    text-align: center;
}

section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #2e7d32; /* Green from van image */
}

section p, section ul {
    max-width: 800px;
    margin: 0 auto 20px;
}

section ul {
    list-style: disc;
    text-align: left;
    margin-left: 20px;
}

.service {
    margin-bottom: 30px;
}

.service-image, .tracking-image {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
}

table {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    border-collapse: collapse;
}

table th, table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

table th {
    background: #f5c518;
    color: #fff;
}

#tracking-form, #book {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

#tracking-form label, #book label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#tracking-form input, #book input, #book textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#book textarea {
    height: 100px;
}

.testimonial {
    max-width: 500px;
    margin: 20px auto;
    text-align: left;
}

.testimonial img {
    max-width: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.contact-info p {
    margin-bottom: 10px;
}

footer {
    background: #f4f4f4;
    padding: 20px;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
}

.social img {
    max-width: 30px;
    margin: 0 10px;
}