body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    margin: 0;
    padding: 0;
}

.banner {
    width: 100%;
    height: 300px;
    background-image: url('https://www.prisetrans.site/wp-content/uploads/2024/01/DALL·E-2024-01-21-09.37.22-Visualize-a-Peterbilt-379-semi-truck-reimagined-in-a-futuristic-digital-style.-The-truck-should-have-a-sleek-modern-design-that-retains-the-distinct.jpg'); /* Replace 'banner-image.jpg' with your image file */
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
    padding-top: 100px;
    background-color: rgba(0, 0, 0, 0.418);
}
.bannertext {
    font-family: 'Cutive', serif;
    color: rgb(255, 255, 255);
    background-color: rgba(0, 0, 0, 0.418);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.column {
    flex-basis: calc(25% - 20px);
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.column img {
    max-width: 100%;
    height: auto;
}

.column h2 {
    font-size: 18px;
    margin-top: 10px;
}

.column p {
    font-size: 14px;
    margin-top: 10px;
}

.column a {
    text-decoration: none;
    color: #002d5d;
    font-weight: bold;
}

@media (max-width: 760px) {
    .column {
        flex-basis: calc(50% - 20px);
    }
}