body {
    margin: 0;
    font-family: Arial, sans-serif;
    padding-top: 80px;
    background-color: #f4f4f4;
    color: #222;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 35px;
    box-sizing: border-box;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: royalblue;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 18px;
}

.navbar a {
    text-decoration: none;
    color: #222;
    font-weight: bold;
}

.navbar a:hover {
    color: royalblue;
}

.call-button {
    background-color: royalblue;
    color: white !important;
    padding: 10px 16px;
    border-radius: 6px;
}

.service-hero {
    background: white;
    text-align: center;
    padding: 60px 20px 45px;
}

.hero-logo {
    max-width: 500px;
    width: 90%;
    height: auto;
    margin-bottom: 25px;
}

.service-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.service-hero p {
    font-size: 20px;
    max-width: 750px;
    margin: 0 auto;
}

.service-content {
    max-width: 1000px;
    margin: 40px auto;
    padding: 25px;
    text-align: center;
}

.service-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,.15);
    margin-bottom: 45px;
}

.service-card ul {
    display: inline-block;
    text-align: left;
    font-size: 20px;
    line-height: 1.8;
    margin: 0;
}

.photo-section {
    max-width: 1200px;
    margin: 20px auto 40px;
    text-align: center;
}
.photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    max-width: 900px;
    margin: auto;
}

.photo-grid img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,.2);
}

.featured-photo {
    grid-column: 1 / span 2;
    justify-self: center;
    max-width: 600px;
}
.van-photo {
    width: 90%;
    max-width: 900px;
    height: auto;
    margin-top: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,.2);
}

.license {
    font-weight: bold;
    margin-top: 25px;
}

footer {
    text-align: center;
    padding: 22px;
    background: #222;
    color: white;
}