body {
    background-color: white;
    font-family: 'Frank Ruhl Libre', serif;
    margin: 0;
    padding: 0;
}

.top-header {
    background-color: white;
    color: black;
    padding: 15px 30px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
    font-size: 18px;
    font-weight: bold;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-header a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-header a:hover {
    color: #ffb4a2;
}

.top-header img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    margin-right: auto;
}

.header-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../Images/truck.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    margin-bottom: 0;
    border-radius: 4px;
}

h1 {
    color: #ffffff;
    font-family: 'Frank Ruhl Libre', serif;
    margin: 0;
    font-size: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.main-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.peach-block {
    background-color: #fffaf5;
    padding: 40px 20px;
    text-align: center;
    margin: 0;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    flex: 1 1 300px;
}

.block-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.peach-block h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 24px;
    display: inline-block;
    text-align: center;
    border-bottom: 3px solid #dd22a8;
    padding-bottom: 5px;
}

.site-footer {
    text-align: center;
    padding: 20px;
    color: #666;
    margin-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.site-footer p {
    margin: 0;
    font-size: 16px;
    color: #666;
}