body {
    background-color: #fff5ec;
    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 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    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: 30px;
    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);
}

.page-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: 10px auto 40px;
    padding: 0 20px;
    position: relative;
}

.image-block {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Layout and residential image scatter positions */
.scatter {
    position: absolute;
    width: clamp(88px, 12vw, 220px);
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    transition: transform 0.25s ease, opacity 0.25s ease;
    z-index: 1;
    pointer-events: auto;
    border: 3px solid #dd22a8;
}

.scatter.pos-left {
    left: 4%;
    top: 0%;
    width: clamp(90px, 13vw, 220px);
    transform: rotate(-6deg) scale(1.12);
}

.scatter.pos-left2 {
    left: 4%;
    top: 65%;
    width: calc(clamp(88px, 12vw, 220px) + 3px);
    transform: rotate(10deg) translateY(-6%);
}

.scatter.pos-right {
    right: 3%;
    top: 5%;
    width: clamp(90px, 13vw, 220px);
    transform: rotate(8deg) scale(1.02);
}

.scatter.bottom-right {
    right: 2%;
    bottom: 0%;
    width: clamp(110px, 15vw, 260px);
    transform: rotate(4deg) translateY(-4%);
}

.scatter.pos-right2 {
    right: 10px;
    bottom: 50px;
    top: auto;
    width: clamp(88px, 12vw, 160px);
    transform: rotate(-6deg);
    z-index: 3;
}

.text-column {
    position: relative;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    z-index: 2;
    margin: 0 clamp(120px, 18vw, 260px);
}

@media (max-width: 900px) {
    .page-content {
        flex-direction: column;
        align-items: center;
    }

    .image-block {
        position: static;
        display: block;
        width: 100%;
        pointer-events: auto;
        margin: 20px auto;
        text-align: center;
    }

    .scatter {
        position: static;
        width: 80%;
        max-width: 420px;
        transform: none;
        margin: 16px auto;
    }

    .text-column {
        margin: 0;
        padding: 0 12px;
    }
}

.service-container {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    padding: 40px;
    max-width: 800px;
    margin: 20px auto 40px;
}

.service-container h2 {
    color: #333;
    display: block;
    text-align: center;
    margin-top: 0;
    font-size: 24px;
}

.service-container p {
    font-size: 20px;
    color: #444;
    line-height: 1.6;
    margin: 15px 0;
}

.service-container ul {
    font-size: 20px;
    color: #444;
    line-height: 1.6;
}

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

.site-footer p {
    margin: 0;
}