/* General Setup */
body {
    font-family: Arial, sans-serif;
        margin: 0;
            padding: 0;
                color: #333;
                    background-color: #f4f4f4;
                    }

                    .container {
                        width: 80%;
                            margin: auto;
                                overflow: hidden;
                                }

                                /* Header/Navigation */
                                header {
                                    background: #1c2b36; /* Dark Blue */
                                        color: #fff;
                                            padding-top: 10px;
                                                min-height: 70px;
                                                    border-bottom: #ff5722 3px solid; /* Orange Accent */
                                                    }

                                                    header h1 {
                                                        float: left;
                                                            margin: 0;
                                                            }

                                                            header a {
                                                                color: #fff;
                                                                    text-decoration: none;
                                                                        text-transform: uppercase;
                                                                            font-size: 16px;
                                                                            }

                                                                            header ul {
                                                                                margin: 0;
                                                                                    padding: 0;
                                                                                        list-style: none;
                                                                                            float: right;
                                                                                            }

                                                                                            header li {
                                                                                                display: inline;
                                                                                                    padding: 0 20px 0 20px;
                                                                                                    }

                                                                                                    /* Buttons */
                                                                                                    .btn {
                                                                                                        display: inline-block;
                                                                                                            color: #fff;
                                                                                                                background-color: #ff5722;
                                                                                                                    padding: 10px 20px;
                                                                                                                        border: none;
                                                                                                                            cursor: pointer;
                                                                                                                                text-decoration: none;
                                                                                                                                    text-transform: uppercase;
                                                                                                                                        margin-top: 20px;
                                                                                                                                            border-radius: 5px;
                                                                                                                                                transition: background-color 0.3s;
                                                                                                                                                }

                                                                                                                                                .btn:hover {
                                                                                                                                                    background-color: #e64a19;
                                                                                                                                                    }

                                                                                                                                                    /* Hero Section */
                                                                                                                                                    .hero {
                                                                                                                                                        background: url('truck_placeholder.jpg') no-repeat center center/cover; /* Replace with a truck image */
                                                                                                                                                            color: #fff;
                                                                                                                                                                text-align: center;
                                                                                                                                                                    padding: 100px 0;
                                                                                                                                                                        min-height: 400px;
                                                                                                                                                                            /* Semi-transparent overlay for text readability */
                                                                                                                                                                                background-color: rgba(0, 0, 0, 0.5); 
                                                                                                                                                                                    background-blend-mode: darken;
                                                                                                                                                                                    }

                                                                                                                                                                                    .hero h2 {
                                                                                                                                                                                        font-size: 48px;
                                                                                                                                                                                            margin-bottom: 10px;
                                                                                                                                                                                            }

                                                                                                                                                                                            .hero p {
                                                                                                                                                                                                font-size: 20px;
                                                                                                                                                                                                    max-width: 600px;
                                                                                                                                                                                                        margin: 0 auto 20px;
                                                                                                                                                                                                        }

                                                                                                                                                                                                        /* Services Section */
                                                                                                                                                                                                        .services {
                                                                                                                                                                                                            padding: 40px 0;
                                                                                                                                                                                                                text-align: center;
                                                                                                                                                                                                                    background: #fff;
                                                                                                                                                                                                                    }

                                                                                                                                                                                                                    .service-list {
                                                                                                                                                                                                                        display: flex;
                                                                                                                                                                                                                            justify-content: space-around;
                                                                                                                                                                                                                                margin-top: 30px;
                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                .service-item {
                                                                                                                                                                                                                                    flex-basis: 30%;
                                                                                                                                                                                                                                        padding: 20px;
                                                                                                                                                                                                                                            border: 1px solid #ccc;
                                                                                                                                                                                                                                                border-radius: 5px;
                                                                                                                                                                                                                                                    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                    .service-item h4 {
                                                                                                                                                                                                                                                        color: #1c2b36;
                                                                                                                                                                                                                                                            margin-top: 0;
                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                            /* Contact Section (Form) */
                                                                                                                                                                                                                                                            .contact {
                                                                                                                                                                                                                                                                padding: 40px 0;
                                                                                                                                                                                                                                                                    background: #e0e0e0;
                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                    .contact h3 {
                                                                                                                                                                                                                                                                        text-align: center;
                                                                                                                                                                                                                                                                            color: #1c2b36;
                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                            .form-group {
                                                                                                                                                                                                                                                                                margin-bottom: 15px;
                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                .form-group label {
                                                                                                                                                                                                                                                                                    display: block;
                                                                                                                                                                                                                                                                                        margin-bottom: 5px;
                                                                                                                                                                                                                                                                                            font-weight: bold;
                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                            .form-group input[type="text"],
                                                                                                                                                                                                                                                                                            .form-group input[type="email"],
                                                                                                                                                                                                                                                                                            .form-group textarea {
                                                                                                                                                                                                                                                                                                width: 100%;
                                                                                                                                                                                                                                                                                                    padding: 10px;
                                                                                                                                                                                                                                                                                                        border: 1px solid #ccc;
                                                                                                                                                                                                                                                                                                            border-radius: 4px;
                                                                                                                                                                                                                                                                                                                box-sizing: border-box; /* Important for padding/border within width */
                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                .contact .btn {
                                                                                                                                                                                                                                                                                                                    width: 100%;
                                                                                                                                                                                                                                                                                                                        padding: 15px;
                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                        /* Footer */
                                                                                                                                                                                                                                                                                                                        footer {
                                                                                                                                                                                                                                                                                                                            background: #1c2b36;
                                                                                                                                                                                                                                                                                                                                color: #fff;
                                                                                                                                                                                                                                                                                                                                    text-align: center;
                                                                                                                                                                                                                                                                                                                                        padding: 20px 0;
                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                        