       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-top {
            background: #1a1a1a;
            color: #fff;
            padding: 10px 0;
        }
        
        .header-top .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .header-top a {
            color: #fff;
            text-decoration: none;
        }
        
        .header-main {
            padding: 15px 0;
        }
        
        .header-main .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo h1 {
            font-size: 24px;
            color: #1a1a1a;
        }
        
        nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
        }
        
        nav a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
        }
        
        nav a:hover {
            color: #d32f2f;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1920&q=80') center/cover;
            color: #fff;
            padding: 80px 0;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: #d32f2f;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px;
        }
        
        .btn:hover {
            background: #b71c1c;
        }
        
        /* Search Section */
        .search-section {
            background: #f5f5f5;
            padding: 40px 0;
        }
        
        .search-filters {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
         
        }
        
        .filter-group {
            flex: 1;
            min-width: 200px;
        }
        
        .filter-group select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }
        
        .search-btn {
            padding: 10px 30px;
            background: #d32f2f;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
        }
        
        /* Content Sections */
        .section {
            padding: 10px 0;
        }
        
        .section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 40px;
            color: #1a1a1a;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .feature-card {
            text-align: center;
            padding: 30px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .feature-card i {
            font-size: 48px;
            color: #d32f2f;
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            margin-bottom: 15px;
            color: #1a1a1a;
        }
        
        /* Inventory Section */
        .inventory-section {
            background: #f5f5f5;
        }
        
        .inventory-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .vehicle-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .vehicle-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .vehicle-card-content {
            padding: 20px;
        }
        
        .vehicle-card h3 {
            margin-bottom: 10px;
            color: #1a1a1a;
        }
        
        .vehicle-price {
            font-size: 24px;
            color: #d32f2f;
            font-weight: bold;
            margin: 10px 0;
        }
        
        /* Footer */
        footer {
            background: #1a1a1a;
            color: #fff;
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h3 {
            margin-bottom: 20px;
            color: #fff;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 10px;
        }
        
        .footer-section a {
            color: #ccc;
            text-decoration: none;
        }
        
        .footer-section a:hover {
            color: #fff;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #ccc;
        }
        
        .contact-info {
            margin: 20px 0;
        }
        
        .contact-info p {
            margin: 10px 0;
        }
        
        .hours {
            margin-top: 20px;
        }
        
        .hours p {
            margin: 5px 0;
        }
        
        /* Content with Image Layout */
        .content-with-image {
            display: flex;
            gap: 40px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .content-text {
            flex: 1;
        }
        
        .content-image {
            flex: 0 0 500px;
        }
        
        .content-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            object-fit: cover;
        }
        
        .content-image-left {
            order: -1;
        }
        
        .feature-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 60px 0;
        }
        
        .faq-wrapper {
            display: flex;
            gap: 40px;
            align-items: flex-start;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .faq-container {
            flex: 1;
            min-width: 0;
        }
        
        .faq-image {
            flex: 0 0 400px;
            position: sticky;
            top: 100px;
        }
        
        .faq-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            object-fit: cover;
        }
        
        .faq-item {
            background: #fff;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: box-shadow 0.3s ease;
        }
        
        .faq-item:hover {
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }
        
        .faq-question {
            padding: 20px 25px;
            background: #f5f5f5;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
            font-size: 18px;
            font-weight: 600;
            color: #1a1a1a;
            user-select: none;
        }
        
        .faq-question:hover {
            background: #e8e8e8;
        }
        
        .faq-question.active {
            background: #d32f2f;
            color: #fff;
        }
        
        .faq-question.active:hover {
            background: #b71c1c;
        }
        
        .faq-icon {
            font-size: 20px;
            transition: transform 0.3s ease;
            margin-left: 15px;
        }
        
        .faq-question.active .faq-icon {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            padding: 0 25px;
        }
        
        .faq-answer.active {
            max-height: 1000px;
            padding: 20px 25px;
        }
        
        .faq-answer p {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 15px;
            color: #333;
        }
        
        .faq-answer p:last-child {
            margin-bottom: 0;
        }
        
        @media (max-width: 768px) {
            nav ul {
                flex-direction: column;
                gap: 10px;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .search-filters {
                flex-direction: column;
            }
            
            .content-with-image {
                flex-direction: column;
            }
            
            .content-image {
                flex: 1;
                width: 100%;
            }
            
            .content-image-left {
                order: 0;
            }
            
            .faq-wrapper {
                flex-direction: column;
            }
            
            .faq-image {
                flex: 1;
                position: static;
                margin-top: 30px;
            }
            
            .faq-question {
                font-size: 16px;
                padding: 15px 20px;
            }
            
            .faq-answer {
                padding: 0 20px;
            }
            
            .faq-answer.active {
                padding: 15px 20px;
            }
        }
.section{width:1200px; margin:auto}

h1 {
    text-align: center;
    margin-bottom: 10px;
}
h2 {
    margin-top: 30px;
    color: #111;
}
p, li {
    font-size: 15px;
}
ul {
    padding-left: 20px;
}

.footer-contact {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
}


/* Start Contact us forms */

    .contact-forms{
        max-width: 800px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0 !important;
    }

    .contact-forms form {
        background-color: #FFFFFFFF;
        border: 1px solid #FFFFFFFF;
        border-radius: 3px;
        max-width: 800px;
        width: 100%;
        border-color: #FFFFFFFF;
        padding-top: 30px;
        padding-bottom: 0px;
        padding-left: 40px;
        padding-right: 40px;
        box-shadow: 1px 0px 5px 2px #57647e36;
    }

    .contact-forms form button.btn-submit{
        background-color: #18bd5bFF;
        border: 0px none #FFFFFF;
        border-radius: 5px;
        padding: 9px 50px 9px 50px;
        white-space: normal;
        width: 100%;
        box-shadow: 0px 0px 0px 0px #FFFFFF;
        margin-bottom: 30px;
    }

    .contact-forms form label.form-name {
        color: #2c3345FF;
        font-weight: 600;
        font-size: 14px;
    }
    .contact-forms form input::placeholder {
        color:#2c3345FF ;
        font-size: 12px;
        opacity: .4;
    }
/* End Contact us forms */