  /* --- GLOBAL STYLES --- */
        :root {
            --primary-color: #610000; /* A clean blue for links/accents */
            --secondary-color: #f8f9fa; /* Light gray for backgrounds/dividers */
            --text-color: #333;
            --font-family: 'Arial', sans-serif;
        }

        body {
            font-family: var(--font-family);
            background-color: #c9c8c8;
            color: var(--text-color);
            margin: 0;
            padding: 0;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* --- HEADER --- */
        .header {
            text-align: center;
            padding: 5px 0;
            border-bottom: 3px solid var(--secondary-color);
            margin-bottom: 10px;
        }

        .header h1 {
            color: var(--primary-color);
            font-size: 2.5em;
            margin: 0;
        }

        /* --- CAR GRID LAYOUT (The main aesthetic change) --- */
        .car-grid {
            /* Use CSS Grid for a responsive, clean layout */
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px; /* Space between the cards */
            list-style: none;
            padding: 0;
            margin: 0;
        }

        /* --- CAR CARD STYLE --- */
        .car-card {
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 8px; /* Rounded corners */
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); /* Soft shadow */
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .car-card:hover {
            transform: translateY(-10px); /* Lift the card on hover */
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        }

        .car-card a {
            display: block;
            padding: 5px;
            text-decoration: none;
            color: var(--text-color);
            font-weight: bold;
            font-size: 1.1em;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis; /* ... for long titles */
        }

        .car-card a:hover {
            color: var(--primary-color);
        }

        /* Optional: Add a placeholder for an image to show the design potential */
        .car-card-image-placeholder {
            height: 100px;
            background-color: var(--secondary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6c757d;
            font-style: italic;
            border-bottom: 1px solid #ddd;
        }

     /* --- NEW IMAGE STYLES --- */
        .car-image {
            width: 100%; /* Image fills the width of the card */
            height: 100px; /* Uniform height for a clean grid look */
            object-fit: cover; /* Important: crops the image to cover the area without stretching */
            border-bottom: 1px solid #ddd;
        }
