:root {
    --google-blue: #1a73e8;
    --text-dark: #202124;
    --text-light: #5f6368;
    --bg-gray: #f8f9fa;
    --border: #dadce0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.2rem;
}

/* Navigation */
.navbar {
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--border);
    text-align: center;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo {
    font-family: 'Product Sans', sans-serif;
    font-size: 1.3rem;
}

.logo strong {
    color: var(--google-blue);
    font-weight: 500;
}

/* Hero Section */
.hero {
    padding: 3rem 0 2rem;
    text-align: center;
}

h1 {
    font-family: 'Product Sans', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

h1 strong { color: var(--google-blue); }

.hero p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Buttons */
.cta-wrapper {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.btn-primary {
    background: var(--google-blue);
    color: white;
    width: 100%;
    max-width: 320px;
    padding: 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    box-shadow: 0 1px 3px rgba(60,64,67,0.3);
    text-align: center;
}

.btn-secondary {
    background: #fff;
    color: var(--google-blue);
    border: 1px solid var(--border);
    width: 100%;
    max-width: 320px;
    padding: 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    text-align: center;
}

/* Services */
.services-list {
    padding: 2rem 0;
    background-color: #fff;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    padding: 10px;
    border-bottom: 1px solid #f1f3f4;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: var(--google-blue);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Van & Map Details */
.details {
    padding: 3rem 0;
    background: var(--bg-gray);
    border-top: 1px solid var(--border);
}

.center-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* New Dimensions Box Styles */
.dimensions-box {
    width: 100%;
    max-width: 600px;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
}

.dimensions-box h3 {
    font-family: 'Product Sans', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.dim-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
}

.dim-item {
    font-size: 1rem;
    color: var(--text-light);
}

.van-display {
    width: 100%;
    text-align: center;
}

.van-image {
    width: 100%; 
    max-width: 600px; 
    height: auto; 
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.12));
}

.map-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    height: 250px;
    background-color: white;
}

/* Footer */
footer {
    padding: 3rem 0;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    background: #fff;
}

/* Desktop Styles */
@media (min-width: 768px) {
    h1 { font-size: 3.2rem; }
    .cta-wrapper { flex-direction: row; justify-content: center; gap: 1.5rem; }
    .btn-primary, .btn-secondary { width: auto; padding: 14px 35px; }
    
    .services-grid { 
        display: grid; 
        grid-template-columns: 1fr 1fr;
        max-width: 700px;
        margin: 0 auto;
    }
}