* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1e1e1e;
    color: #f5f5f5;
    line-height: 1.6;
    padding: 20px;
}

header {
    text-align: center;
    padding: 20px 0;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.car-image {
    text-align: center;
    margin-bottom: 20px;
}

.car-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
}

.image-credit {
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 5px;
}

.car-description, .car-specs {
    margin: 20px 0;
}

.car-description h2, .car-specs h2 {
    font-size: 1.8rem;
    color: #00bcd4;
    margin-bottom: 10px;
}

.car-description p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 1rem;
}

table th, table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #444;
}

table th {
    background-color: #00bcd4;
    color: #fff;
}

table tr:nth-child(even) {
    background-color: #333;
}

footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #777;
}
