body {
    font-family: Arial, sans-serif;
    margin: 0;
    line-height: 1.7;
    background: #f4f6f8;
    color: #2c3e50;
}

/* Layout container */
section, header, nav, footer {
    max-width: 900px;
    margin: auto;
}

/* Logo bar */
.logo-bar {
    text-align: center;
    padding: 25px 20px;
    background: white;
}

/* Responsive logo */
.site-logo {
    width: 180px;
    max-width: 100%;
    height: auto;
}

/* Navigation */
nav {
    background: #34495e;
    padding: 10px;
    text-align: center;
}

nav a {
    display: inline-block;
    background: #2c3e50;
    color: white;
    margin: 5px;
    padding: 12px 18px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.2s ease;
}

nav a:hover {
    background: #1a252f;
}

/* HERO */
.hero {
    background: url('images/van.png') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: auto;
}

.hero h1 {
    font-size: 34px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 15px;
}

/* Sections */
section {
    background: white;
    margin: 25px 20px;
    padding: 30px;
    border-radius: 10px;
}

/* Section headings */
h2 {
    margin-bottom: 15px;
    font-size: 26px;
}

/* Lists */
ul {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

/* Highlight box */
.highlight-box {
    background: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
}

/* Image section */
.section-image {
    background: url('images/move1.jpg') center/cover no-repeat;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.gallery img {
    width: 100%;
    border-radius: 8px;
}

/* CTA button */
.cta-button {
    background: #e67e22;
    color: white;
    padding: 16px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
    font-size: 18px;
}

.cta-button:hover {
    background: #cf711f;
}

/* Sticky call button */
.sticky-call {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #e67e22;
    color: white;
    text-align: center;
    padding: 16px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    z-index: 1000;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    font-size: 14px;
}

/* MOBILE IMPROVEMENTS */
@media (max-width: 600px) {

    .logo-bar {
        padding: 15px;
    }

    .site-logo {
        width: 140px;
    }

    .hero {
        padding: 80px 20px;
    }

    .hero h1 {
        font-size: 26px;
    }

    nav {
        display: flex;
        flex-direction: column;
    }

    nav a {
        width: 100%;
        margin: 5px 0;
        font-size: 18px;
    }

    section {
        padding: 20px;
        margin: 15px;
    }
}

/* EXTRA SMALL PHONES */
@media (max-width: 400px) {
    .site-logo {
        width: 120px;
    }
}