        * {
            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: 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;
            text-align: center;
            margin-top: auto;
        }

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

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

        .poster {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('img/poster.png');
            background-size: cover;
            background-position: center;
            height: 600px;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            padding-top: 80px;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
        }

        .poster h2 {
            font-size: 48px;
            margin-bottom: 25px;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .poster p {
            font-size: 22px;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cars-section {
            padding: 100px 0;
            background: #1a1a1a;
        }

        .cars-section h2 {
            text-align: center;
            margin-bottom: 60px;
            font-size: 36px;
            color: #e10600;
            text-transform: uppercase;
            position: relative;
            padding-bottom: 15px;
        }

        .cars-section h2::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 3px;
            background: #e10600;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .cars-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .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;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

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

        .car-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-bottom: 2px solid #e10600;
        }

        .car-content {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .car-card h3 {
            font-size: 22px;
            color: #fff;
            margin-bottom: 10px;
        }

        .car-card p {
            color: #aaa;
            margin-bottom: 10px;
        }

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

        .about-section {
            padding: 100px 0;
            background: #121212;
            border-top: 1px solid #333;
            border-bottom: 1px solid #333;
        }

        .about-section h2 {
            text-align: center;
            margin-bottom: 60px;
            font-size: 36px;
            color: #e10600;
            text-transform: uppercase;
            position: relative;
            padding-bottom: 15px;
        }

        .about-section h2::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 3px;
            background: #e10600;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .about-section p {
            margin-bottom: 25px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
            color: #e0e0e0;
            font-size: 18px;
        }

        .about-section ul {
            max-width: 600px;
            margin: 40px auto;
            padding-left: 40px;
            list-style-type: none;
        }

        .about-section li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 30px;
            color: #e0e0e0;
        }

        .about-section li::before {
            content: '➤';
            color: #e10600;
            position: absolute;
            left: 0;
        }

        .contact-section {
            padding: 100px 0;
            background: #1a1a1a;
        }

        .contact-section h2 {
            text-align: center;
            margin-bottom: 60px;
            font-size: 36px;
            color: #e10600;
            text-transform: uppercase;
            position: relative;
            padding-bottom: 15px;
        }

        .contact-section h2::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 3px;
            background: #e10600;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

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

        .contact-info div {
            background: #242424;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            border: 1px solid #333;
            transition: all 0.3s;
        }

        .contact-info div:hover {
            border-color: #e10600;
            transform: translateY(-5px);
        }

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

        .contact-info p {
            color: #e0e0e0;
        }

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

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