body {
    margin: 0;
    font-family: "Porsche Next", "Arial Narrow", Arial, "Heiti SC", SimHei, sans-serif;
}

.content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: #ffffff;
    padding: 20px;
}

.info-container {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: left; /* Align items to the left */
    justify-content: center;
    margin-right: 20px;
}

.info-block {
    margin-bottom: 20px;
    text-align: center; /* Align text to the center */
}

.odometer {
    font-size: 60px;
    font-weight: bold;
    display: inline-block;
}

.unit {
    font-size: 30px;
    vertical-align: top;
    margin-left: 5px;
}

.car-image {
    flex: 1;
    text-align: left; /* Align image to the left */
}

.car-image img {
    max-width: 100%;
    height: auto;
}

.details-button {
    padding: 5px 15px;
    font-size: 16px;
    border: 1px solid #000;
    background: none;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 20px;
}

.details-button:hover {
    background: #000;
    color: #fff;
}

a {
    color: #6b6d70;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        align-items: center;
    }

    .info-container {
        align-items: center;
        text-align: center;
        margin-right: 0;
    }

    .info-block {
        text-align: center;
    }

    .car-image {
        text-align: center;
        margin-top: 20px;
    }

    .details-button {
        font-size: 14px;
        padding: 5px 10px;
    }
}
