body {
    margin: 0;
    font-family: 'Instrument Sans', sans-serif;
    background: #fff;
    color: #000;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid #e5e5e5;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu {
    display: flex;
    gap: 24px;
}

.menu a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

.container {
    text-align: center;
    padding: 40px 20px;
}

.container h1 {
    font-size: 32px;
    margin-bottom: 12px;
}

.container p {
    color: #555;
    margin-bottom: 24px;
}

.stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.stat-card {
    flex: 1 1 220px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
}

.stat-card h3 {
    margin: 0;
    font-size: 18px;
    color: #555;
}

.stat-card p {
    margin: 8px 0 0;
    font-size: 24px;
    font-weight: 600;
}

.vehicle-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.vehicle-icon {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
}

.wa-button {
    padding: 8px 12px;
    background-color: #25D366;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
}

.search-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 600px;
    margin: 0 auto 40px;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
}

.search-box input {
    flex: 1;
    border: none;
    padding: 12px 16px;
    font-size: 16px;
}

.search-box button {
    background: #eee;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    font-weight: 500;
}

/* Responsive for mobile */
@media (max-width: 600px) {
    .search-box {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box input {
        margin: 0;
        border-bottom: 1px solid #ccc;
        width: 100%;
    }

    .search-box button {
        width: 100%;
        border-top: 1px solid #ccc;
    }
}