        body {
            font-family: 'Roboto', sans-serif;
            margin: 0;
            padding: 0;
           
        }
        header {
            background-color: #ffffff;
            padding: 10px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px;
            max-width:1200px;
            margin:0 auto;
            position: relative;
            height: 70px;
            z-index: 10000;
        }
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 10px;
            z-index: 1000;
        }
        .mobile-menu-btn span {
            width: 25px;
            height: 3px;
            background-color: #000;
            margin: 3px 0;
            transition: 0.3s;
        }
        .logo img {
            height: 80px; /* Adjust the size of the logo */
        }
        .account-links {
            text-decoration: none;
            color: #202020;
            font-size: 12px;
            display: flex;
            align-items: center;
        }
        .account-links a {
            text-decoration: none;
            color: #000;
            font-weight: 400;
            margin-right: 20px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        .account-links a img {
            display: block;
        }
        .account-links a span {
            display: inline;
        }
        .account-link-pc {
            display: inline-flex !important;
        }
        .account-menu-trigger {
            display: none !important;
        }
        .account-dropdown {
            display: none !important;
        }
        .account-menu-trigger {
            cursor: pointer;
            padding: 5px;
        }
        .account-menu-trigger:hover {
            background-color: #f5f5f5;
        }

        .account-dropdown {
            display: block;
            position: absolute;
            top: 70px;
            right: 0;
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            border-radius: 5px;
            min-width: 200px;
            z-index: 1000;
            padding: 10px 0;
        }
        .account-dropdown.active {
            display: block;
        }
        .account-dropdown ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .account-dropdown li {
            padding: 0;
            margin: 0;
        }
        .account-dropdown a {
            display: flex;
            align-items: center;
            padding: 10px 15px;
            margin: 0;
            color: #000;
            font-weight: 400;
            gap: 10px;
            text-decoration: none;
        }
        .account-dropdown a:hover {
            background-color: #f5f5f5;
        }
        .account-icon {
            width: 18px;
            height: 18px;
        }
        .account-links a:last-child {
            margin-right: 0;
        }
         .forgot-password {
            text-align: right;
            margin-bottom: 16px;
            margin-top: -8px;
        }
        .forgot-password a {
            font-size: 13px;
            color: #888;
            text-decoration: none;
        }
        .forgot-password a:hover {
            color: #C2A98B;
            text-decoration: underline;
        }
        .cart-icon {
            width: 25px;
            height: 25px;
            margin-left: 10px;
        }
        .menu-bar {
            background-color: #F1EEE9; /* Updated background color */
            /* padding: 15px 0; */
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            width: 100%;
            height:50px;
            align-items: center;
        }
        .menu-bar ul {
            width: 1200px;
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .menu-bar li {
            flex: 1;
            text-align: center;
        }
        .menu-bar a {
            text-decoration: none;
            color: #000;
            font-weight: 500;
            /* padding: 10px 0px; */
            display: block;
            width: 100%;
            height: 50px;
            line-height: 50px;
        }
        .menu-bar a:hover, .menu-bar a.active {
            background-color: #C2A98B; /* Updated active/hover color */
            color: #fff;
        }
        .menu-bar a:hover, .menu-bar a.active {
            background-color: #C2A98B; /* Updated active/hover color */
           
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            
            /* padding: 20px; */
        }
        .hero {
            background: url('/assets/img/Banner.png') center center no-repeat;
            background-size: 100% 100%;
            background-position: center;
            min-height: 700px;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: center;
            font-size: 14px;
            position: relative;
            padding-bottom: 0px;
            width: 100%;
            margin-top: 20px;
        }
      
        .search-section {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            border-radius: 5px 5px 0 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            /* margin-bottom: -90px; */
            width: 100%;
        }
        .search-tabs {
            display: flex;
            width: 100%;
        }
        .search-tabs .tab {
            padding: 10px 20px;
            cursor: pointer;
            border-bottom: none;
            margin-right: 2px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .tab-icon {
            width: 18px;
            height: 18px;
        }
        .search-tabs .tab:first-child {
            border-top-left-radius: 5px;
        }
        .search-tabs .tab:last-child {
            border-top-right-radius: 5px;
            margin-right: 0;
        }
        .search-tabs .tab.active {
            background-color:#fff;;
            color: #353535;
        }

        .tab-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            width: 100%;
            background-color: #fff;
            box-sizing: border-box;
        }
        .tab-pane {
            display: none;
            width: 100%;
            gap: 10px;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
        }
        .tab-pane.active {
            display: flex;
            align-items: center;
            justify-content: space-around;
        }
        .tab-pane label {
            color: #888;
            font-size: 14px;
            font-weight: 500;
            flex: 0 0 auto;
            
        }
        .search-section select, .search-section input {
            padding: 10px;
            margin: 10px;
            font-size: 14px;
            color: #888;
            flex: 1;
            min-width: 100px;
            max-width: 200px;
            border:1px solid #888;
            border-radius: 3px;
        }
        .tab-pane#license-plate input,
        .tab-pane#vin-search input {
            max-width: none;
            flex: 1;
        }
        .search-btn {
            padding: 10px 30px;
            font-size: 16px;
            background-color: #000;
            color: #fff;
            border: none;
            cursor: pointer;
            margin: 10px;
            border-radius: 3px;
            height: 40px;
            align-self: center;
        }
        .search-btn:hover {
            background-color: #444;
        }
        .section-title {
            text-align: center;
            font-size: 32px;
            font-weight: 700;
            margin-top: 120px;
            margin-bottom: 30px;
            color: #000;
        }
        .popular-products, .popular-brands {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 60px;
        }
        .popular-products div, .popular-brands div {
            text-align: center;
            width: 30%;
            margin-bottom: 20px;
            border-radius: 10px;
            border: 1px solid #F1EEE9;
        }
        .popular-products div img, .popular-brands div img {
            width: 100%;
            height: 120px;
            object-fit: contain;
             padding: 10px;
           
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            body {
                padding-top: 8px;
            }
            header {
                height: 60px;
                padding: 8px 10px;
                z-index: 10000 !important;
                box-sizing: border-box;
            }
            .mobile-menu-btn {
                display: flex;
                position: absolute;
                left: 10px;
                top: 50%;
                transform: translateY(-50%);
            }
            .logo {
                position: absolute;
                left: 50%;
                top: 60%;
                transform: translate(-50%, -50%);
            }
            .logo img {
                height: 64px;
            }
            .account-links {
                margin-top: 0;
                flex-wrap: nowrap;
                justify-content: flex-end;
                position: absolute;
                right: 10px;
                top: 50%;
                transform: translateY(-50%);
            }
            .account-dropdown {
                position: fixed !important;
                top: 50px !important;
                right: 10px !important;
                background-color: #fff !important;
                box-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
                border-radius: 5px !important;
                min-width: 200px !important;
                z-index: 9999 !important;
                padding: 10px 0 !important;
                display: none !important;
            }
            .account-dropdown ul {
                list-style: none !important;
                padding: 0 !important;
                margin: 0 !important;
            }
            .account-dropdown li {
                padding: 0 !important;
                margin: 0 !important;
                display: block !important;
            }
            .account-dropdown a {
                color: #000 !important;
                font-size: 14px !important;
                text-decoration: none !important;
                display: flex !important;
                align-items: center !important;
                padding: 12px 15px !important;
                gap: 10px !important;
                width: 100% !important;
                box-sizing: border-box !important;
            }
            .account-dropdown a img {
                display: block !important;
                width: 18px !important;
                height: 18px !important;
            }
            .account-dropdown.active {
                display: block !important;
            }
            .account-links a {
                display: none;
            }
            .account-link-pc {
                display: none !important;
            }
            .account-menu-trigger {
                display: block !important;
            }
            .account-menu-trigger img {
                width: 25px !important;
                height: 25px !important;
                display: block !important;
            }
            .cart-icon {
                display: none;
            }
            .menu-bar {
                display: none !important;
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #fff;
                z-index: 999;
                padding: 0;
                box-shadow: 0 2px 5px rgba(0,0,0,0.1);
                height: 0;
                transition: height 0.3s ease;
                width: 100%;
                max-width: 100%;
                overflow-x: hidden;
            }
            .menu-bar.active {
                display: block !important;
                height: auto;
            }
            .menu-bar ul {
                flex-direction: column !important;
                align-items: stretch !important;
                width: 100% !important;
                background-color: #fff !important;
                padding: 0;
                margin: 0;
                list-style: none !important;
                display: block !important;
            }
            .menu-bar li {
                width: 100% !important;
                text-align: left !important;
                border-bottom: 1px solid #eee;
                flex: none !important;
                max-width: 100% !important;
                overflow: hidden !important;
                padding: 0 !important;
                margin: 0 !important;
            }
            .menu-bar a {
                display: block !important;
                padding: 15px 20px;
                color: #000 !important;
                background-color: #fff !important;
                font-size: 16px !important;
                text-decoration: none !important;
                width: 100% !important;
                font-weight: normal !important;
            }
            .menu-bar a:hover {
                background-color: #EDCCAE !important;
                color: #fff !important;
            }
            .hero {
                min-height: 400px;
                padding: 0 10px;
                background-size: 100% 100% !important;
                background-position: center !important;
                background-repeat: no-repeat !important;
            }
            .search-section {
                padding: 15px;
                width: 100%;
                box-sizing: border-box;
            }
            .search-tabs .tab {
                padding: 8px 12px;
                font-size: 14px;
            }
            .tab-content {
                padding: 0;
            }
            .tab-pane {
                flex-direction: row;
                flex-wrap: wrap;
                width: 100%;
            }
            .tab-pane.active {
                align-items: center;
                justify-content: flex-start;
            }
            .tab-pane label {
                text-align: left;
                margin-bottom: 5px;
            }
            .search-section select, .search-section input {
                width: auto;
                flex: 1;
                margin: 3px;
                box-sizing: border-box;
                max-width: none;
                min-width: 80px;
            }
            .search-btn {
                width: auto;
                margin: 5px;
                padding: 10px 20px;
                box-sizing: border-box;
                flex: 0 0 auto;
            }
            .tab-pane#my-vehicle .search-btn {
                flex: 0 0 auto !important;
                padding: 10px 15px !important;
            }
            .section-title {
                font-size: 24px;
                margin-top: 40px;
            }
            .popular-products, .popular-brands {
                flex-direction: row;
                align-items: flex-start;
                justify-content: space-between;
                flex-wrap: wrap;
            }
            .popular-products div, .popular-brands div {
                width: calc(50% - 10px);
                max-width: none;
                margin-bottom: 20px;
            }
            .popular-products div img, .popular-brands div img {
                height: 150px;
            }
            footer .footer-content {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: space-between;
                padding: 0 20px;
            }
            footer .footer-content > div {
                width: calc(50% - 20px);
                margin: 10px 0;
                flex: 0 0 auto !important;
                min-width: auto !important;
            }
            .footer-register {
                flex-direction: column;
                padding: 20px;
            }
            .footer-register p {
                margin: 10px 0;
                white-space: normal;
            }
        }

        /* Extra small mobile devices */
        @media (max-width: 480px) {
            header {
                flex-direction: column;
                align-items: flex-start;
            }
         
            .menu-bar a {
                font-size: 14px;
            }
            .hero {
                min-height: 300px;
                background-size: 100% 100% !important;
                background-position: center !important;
            }
            .search-tabs .tab {
                padding: 6px 10px;
                font-size: 12px;
            }
            .section-title {
                font-size: 20px;
            }
            .search-section select, .search-section input {
                font-size: 14px;
                padding: 8px;
            }
            .tab-pane#my-vehicle {
                flex-wrap: nowrap !important;
                align-items: center !important;
            }
            .tab-pane#my-vehicle select {
                flex: 1 !important;
                min-width: 60px !important;
            }
            .tab-pane#my-vehicle label {
                display: none !important;
            }
        }

        footer {
            background-color: #F1EEE9;
            background-image: url('/assets/img/footer-bg.png');
            color: #202020;
            padding: 40px 0;
        }
        footer .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        footer .footer-content > div {
            flex: 1;
            min-width: 200px;
            text-align: left;
            margin: 0 10px;
        }
        footer h4 {
            color: #202020;
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 15px 0;
            padding:5px;
            text-transform: uppercase;
            border-bottom: 1px solid #202020;
            width:80%;
        }
        footer a {
            color: #202020;
            text-decoration: none;
            display: block;
            margin: 8px 0;
            font-size: 14px;
        }
        footer a:hover {
            color: #000;
        }
        footer .social-icons {
            display: flex;
            gap: 10px;
        }
        footer .social-icons img {
            width: 25px;
            margin: 0;
        }
        .footer-register {
            max-width: 1200px;
            margin: 30px auto 0;
            padding: 20px 0;
            border-top: 1px solid #555;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .footer-register p {
            margin: 0;
            color: #202020;
            white-space: nowrap;
            display: inline-block;
            vertical-align: middle;
        }
        .footer-register p:first-child {
            flex: 1;
        }
        .footer-register a {
            color: #202020;
            white-space: nowrap;
            display: inline;
        }
        .footer-register img {
            width: 50px;
            height: auto;
            margin: 0 10px;
            vertical-align: middle;
        }
        footer .footer-register{
           width:100%;
           border-top: 1px solid #202020;
           margin:20px auto;
        }

        .footer-register div{
            width:100%;

        }
        
          .footer-copyright {
            text-align: center;
            padding: 15px 0;
            margin-top: 20px;
            max-width: 1200px;
            border-top: 1px solid #444;
            margin:0 auto;
        }

        .footer-copyright p {
            margin: 0;
            font-size: 14px;
            color: #888;
        }
