        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background-color: #121212;
            color: #e0e0e0;
            line-height: 1.6;
        }

       .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

       header {
            background: rgba(18, 18, 18, 0.9);
            box-shadow: 0 2px 10px rgba(225, 6, 0, 0.3);
            position: fixed;
            width: 100%;
            z-index: 100;
            border-bottom: 1px solid #e10600;
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        header h1 {
            color: #e10600;
            font-size: 28px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

                nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            text-decoration: none;
            color: #e0e0e0;
            font-weight: 600;
            transition: color 0.3s;
            position: relative;
            padding-bottom: 5px;
        }

        nav ul li a:hover {
            color: #e10600;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #e10600;
            transition: width 0.3s;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .catalog-header {
            text-align: center;
            margin-bottom: 40px;
            padding-top: 60px;
        }

        .catalog-header h1 {
            color: #e10600;
            font-size: 36px;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .catalog-header p {
            color: #aaa;
            font-size: 18px;
        }

        .cars-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
            padding-top: 120px;
        }

        .car-card {
            background: #242424;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            transition: all 0.3s;
            border: 1px solid #333;
        }

        .car-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(225, 6, 0, 0.2);
            border-color: #e10600;
        }

        .car-image-container {
            height: 200px;
            overflow: hidden;
        }

        .car-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .car-card:hover .car-image {
            transform: scale(1.05);
        }

        .car-info {
            padding: 20px;
        }

        .car-title {
            font-size: 22px;
            color: #fff;
            margin-bottom: 5px;
        }

        .car-subtitle {
            color: #aaa;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .car-price {
            font-size: 20px;
            font-weight: bold;
            color: #e10600;
            margin: 15px 0;
        }

        .btn-details {
            display: inline-block;
            background: #e10600;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 2px solid #e10600;
            width: 100%;
            text-align: center;
        }

        .btn-details:hover {
            background: transparent;
            color: #e10600;
        }

        .page-link {
           display: inline-block;
           margin: 0 5px;
           padding: 8px 14px;
           background-color: #1c1c1c;
           color: #e0e0e0;
           border: 1px solid #e10600;
           border-radius: 5px;
           text-decoration: none;
           font-weight: 600;
}

        footer {
            background: #000;
            color: #e0e0e0;
            text-align: center;
            padding: 30px 0;
            margin-top: 50px;
            border-top: 2px solid #e10600;
        }

        footer p {
            margin: 0;
            font-size: 14px;
        }