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

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

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

        .btn {
            display: inline-block;
            background: #e10600;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 2px solid #e10600;
            cursor: pointer;
            font-size: 16px;
        }

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

        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;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            width: 28px;
            height: 28px;
            background-color: #e10600;
            border-radius: 4px;
            position: relative;
        }

        .logo-icon:after {
            content: "M";
            position: absolute;
            color: white;
            font-weight: bold;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .logo h1 {
            color: #e10600;
            font-size: 24px;
            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%;
        }

        .car-single {
            padding-top: 100px;
            padding-bottom: 80px;
        }

        .car-gallery {
            margin-bottom: 40px;
        }

        .main-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 8px;
            border: 2px solid #333;
            margin-bottom: 15px;
        }

        .thumbnails {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 10px;
        }

        .thumbnail {
            height: 80px;
            object-fit: cover;
            border-radius: 5px;
            border: 1px solid #333;
            transition: all 0.3s;
        }

        .thumbnail:hover {
            border-color: #e10600;
        }

        .car-info {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
        }

        .car-details h1 {
            font-size: 32px;
            color: #fff;
            margin-bottom: 20px;
            border-bottom: 2px solid #e10600;
            padding-bottom: 10px;
        }

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

        .specs {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin: 25px 0;
        }

        .spec-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .spec-icon {
            width: 30px;
            height: 30px;
            background: #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #e10600;
            font-weight: bold;
        }

        .spec-item span {
            color: #aaa;
        }

        .spec-item strong {
            color: #e0e0e0;
            font-weight: 600;
        }

        .description {
            margin: 30px 0;
            line-height: 1.8;
        }

        .sidebar {
            background: #1a1a1a;
            padding: 30px;
            border-radius: 8px;
            border: 1px solid #333;
            height: fit-content;
        }

        .sidebar h3 {
            color: #e10600;
            margin-bottom: 20px;
            font-size: 22px;
            border-bottom: 1px solid #333;
            padding-bottom: 10px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            background: #242424;
            border: 1px solid #333;
            border-radius: 5px;
            color: #e0e0e0;
        }

        .contact-form textarea {
            height: 120px;
            resize: vertical;
        }

        .features-list {
            list-style: none;
            margin-top: 20px;
        }

        .features-list li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 25px;
        }

        .features-list li::before {
            content: '✓';
            color: #e10600;
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        footer {
            background: #000;
            color: #e0e0e0;
            padding: 50px 0 20px;
            border-top: 2px solid #e10600;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-column h3 {
            color: #e10600;
            margin-bottom: 20px;
            font-size: 20px;
        }

        .footer-column p, 
        .footer-column a {
            color: #aaa;
            margin-bottom: 10px;
            display: block;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column a:hover {
            color: #e10600;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .contact-icon {
            width: 20px;
            height: 20px;
            background: #e10600;
            border-radius: 50%;
            margin-right: 10px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-link {
            width: 36px;
            height: 36px;
            background: #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #e0e0e0;
            transition: all 0.3s;
        }

        .social-link:hover {
            background: #e10600;
            color: white;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #777;
            font-size: 14px;
        }