body {
    font-family: Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    background: #f4f6f8;
}

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

/* Header */
header {
    background: #2c3e50;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

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

nav a {
    color: white;
    margin: 0 12px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

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

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

/* Headings */
h1, h2 {
    margin-top: 0;
}

/* Buttons */
button {
    background: #2c3e50;
    color: white;
    padding: 12px;
    border: none;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

button:hover {
    background: #1a252f;
}

/* Form styling */
form {
    max-width: 500px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 10px;
}

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

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

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

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

/* Call to action button */
.cta-button {
    background: #e67e22;
    color: white;
    padding: 14px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

.sticky-call {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #e67e22;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    z-index: 1000;
}
/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
}