        html, body {
            overflow-x: hidden;
            width: 100%;
            position: relative;
        }

        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f5f9;
        }
        ::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #94a3b8;
        }

        :root {
            --primary: #1c9bff;
            --primary-hover: #004494;
            --secondary: #f8f9fa;
            --text-dark: #212529;
            --text-muted: #6c757d;
            --border-color: #dee2e6;
            --bg-light: #ffffff;
            --bg-body: #f4f6f9;
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
            --radius: 6px;
            --primary-color: #0f172a;
            --accent-color: #2563eb;
            --accent-hover: #1d4ed8;
            --bg-color: #f8fafc;
            --surface-color: #ffffff;
            --text-main: #334155;
            --text-light: #64748b;
            --border-radius: 6px;
            --graymmy: #8191a6;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #f8f9fa;
            color: #333;
            font-size: 14px;
        }

        .slider-indicators {
            display: none !important;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
            font-family: inherit;
        }

        .hero-section {
            position: relative;
            height: 480px;
            overflow: hidden;
            background: #000;
        }

        .hero-slider {
            display: flex;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }

        .hero-slide {
            min-width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            position: relative;
        }

        .hero-slide::before {
            content: '';
            position: absolute;
            inset: 0;
            background: #1b2e48ab;
        }

        .title-caption {
            position: relative;
            z-index: 2;
            color: white;
            text-align: center;
            padding: 0 5%;
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            transform: translateY(-30px);
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-bottom: 18px;
        }

        .quick-access {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            list-style: none;
            padding: 0;
            margin-bottom: 25px;
            width: 100%;
        }

        .quick-access li {
            width: auto;
        }

        .keep-together {
            display: flex;
            gap: 12px;
            flex-wrap: nowrap;
        }

        .quick-access li a {
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            backdrop-filter: blur(4px);
            color: #95afc0;
            padding: 4px 14px;
            font-size: 14px;
            border-radius: 4px;
            transition: all .3s;
            background: #ffffff0d;
            height: 100%;
            box-sizing: border-box;
            white-space: nowrap;
        }

        .quick-access li a:hover {
            background: rgba(255, 255, 255, 0.25);
        }

        .title-caption h1,
        .title-caption h2 {
            font-size: 42px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 15px;
            font-family: 'Rubik', sans-serif;
            line-height: 1.2;
            letter-spacing: 1px;
        }

        .title-caption p {
            font-size: 16px;
            opacity: 0.7;
            margin: 0 auto 30px auto; 
            max-width: 600px;
            line-height: 1.5;
        }

        .hero-buttons {
            display: flex;
            justify-content: center; 
            gap: 15px;
            flex-wrap: wrap;
        }

        .link-main {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            border-radius: 6px;
            font-weight: 400;
            font-size: 15px;
            transition: all 0.3s;
            min-width: 152px;
        }

        .link-main:not(.secondary) {
            background: var(--primary);
            color: #ffffffc7;
        }

        .link-main:not(.secondary):hover {
            background: var(--primary-hover);
            border-color: var(--primary-hover);
        }

        .link-main.secondary {
            background: #0798553b;
            color: #fff;
            border: 1px solid #193a2a29;
        }

        .link-main.secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #fff;
        }

        .hero-controls {
            position: absolute;
            bottom: 30px;
            top: auto;
            transform: none;
            width: 100%;
            display: flex;
            left: 5%;
            gap: 8px;
            z-index: 3;
            padding: 0;
            max-width: 1300px;
            margin: 0 auto;
        }

        .hero-dot {
            width: 8px;
            height: 8px;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            cursor: pointer;
            transition: 0.3s;
        }

        .hero-dot:hover {
            background: rgba(255, 255, 255, 0.7);
        }

        .hero-dot.active {
            background: #fff;
            width: 28px;
            border-radius: 5px;
        }

        .container {
            max-width: 1420px;
            margin: 0 auto;
            padding: 20px;
        }

        .search-container {
            background: var(--bg-light);
            padding: 25px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-md);
            margin-top: -105px;
            position: relative;
            z-index: 10;
            margin-bottom: 40px;
            max-width: 930px;
            margin-right: auto;
            margin-left: auto;
        }

        .search-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 15px;
        }

        .search-tabs {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            align-items: center;
        }

        .archive-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .archive-mobile-text {
            display: none;
        }

        .toggle-archive input:checked + .toggle-slider {
            background-color: var(--primary);
        }

        .toggle-archive .toggle-label {
            color: #475569;
        }

        .vehicle-type-btn {
            padding: 8px 16px;
            border: 1px solid #cbd5e14d;
            border-radius: 4px;
            background: var(--bg-color);
            color: var(--text-main);
            font-size: 12px;
            font-weight: 500;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .vehicle-type-btn.active, .vehicle-type-btn:hover {
            background: var(--accent-color);
            color: white!important;
            border-color: var(--accent-color);
        }

        .vehicle-type-btn i {
            font-size: 14px;
        }

        .filters-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 15px;
            align-items: start;
        }

        .custom-select-wrapper {
            position: relative;
            width: 100%;
            font-size: 13px;
        }

        .custom-select-selected {
            background: #f8fafc;
            border: 1px solid #cbd5e15c;
            padding: 10px 15px;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.2s ease;
        }

        .custom-select-selected:hover {
            border-color: #94a3b8;
            background-color: #ffffff;
        }

        .custom-select-selected::after {
            content: '\f0d7';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            color: #6c757d;
        }

        .custom-select-selected.select-arrow-active {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(28, 155, 255, 0.15);
            background-color: #ffffff;
        }

        .custom-select-selected.select-arrow-active::after {
            transform: rotate(180deg);
            color: var(--primary);
        }

        .custom-select-items {
            position: absolute;
            background: #fff;
            border: 1px solid #cbd5e1;
            border-radius: var(--radius);
            width: 100%;
            max-height: 250px;
            overflow-y: auto;
            z-index: 99;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            margin-top: 5px;
        }

        .select-hide {
            display: none;
        }

        .search-input-wrapper {
            padding: 10px;
            position: sticky;
            top: 0;
            background: #fff;
            border-bottom: 1px solid #f1f5f9;
        }

        .search-input-wrapper input {
            width: 100%;
            padding: 8px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            font-size: 12px;
            outline: none;
            transition: border-color 0.2s;
        }

        .search-input-wrapper input:focus {
            border-color: var(--primary);
        }

        .select-item-option {
            padding: 10px 15px;
            cursor: pointer;
            transition: 0.1s;
            border-bottom: 1px solid #f1f5f9;
        }

        .select-item-option:last-child {
            border-bottom: none;
        }

        .select-item-option:hover {
            background: #f0f7ff;
            color: var(--primary);
        }

        .custom-select-selected.disabled {
            background: #e9ecef;
            cursor: not-allowed;
            opacity: 0.7;
        }

        .form-control {
            width: 100%;
            padding: 10px 35px 10px 15px;
            border: 1px solid #cbd5e15c;
            border-radius: 8px;
            font-size: 13px;
            outline: none;
            background-color: #f8fafc;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%236c757d' d='M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 10px;
            color: var(--text-dark);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .form-control:hover {
            border-color: #94a3b8;
            background-color: #ffffff;
        }

        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(28, 155, 255, 0.15);
            background-color: #ffffff;
        }

        .auction-toggles-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-around;
            gap: 15px;
            padding: 0 5px;
            height: 100%;
        }

        .toggle-switch {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

        .toggle-switch input {
            display: none;
        }

        .toggle-slider {
            position: relative;
            width: 32px;
            height: 18px;
            background-color: #cbd5e1;
            border-radius: 18px;
            transition: 0.3s ease;
        }

        .toggle-slider::before {
            content: "";
            position: absolute;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background-color: white;
            top: 2px;
            left: 2px;
            transition: 0.3s ease;
        }

        .toggle-copart input:checked + .toggle-slider {
            background-color: #2563eb;
        }

        .toggle-iaai input:checked + .toggle-slider {
            background-color: #dc2626;
        }

        .toggle-switch input:checked + .toggle-slider::before {
            transform: translateX(14px);
        }

        .toggle-label {
            font-size: 13px;
            color: var(--text-dark);
            font-weight: 500;
        }

        .advanced-filters-container {
            display: none;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid var(--border-color);
        }

        .advanced-filters-container.open {
            display: block;
        }

        .filter-group {
            margin-bottom: 15px;
        }

        .filter-group-title {
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 12px;
            text-transform: uppercase;
            color: var(--text-muted);
        }

        .radio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
            gap: 10px;
        }

        .radio-label {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            cursor: pointer;
            color: var(--text-dark);
            transition: color 0.2s;
        }

        .radio-label:hover {
            color: var(--primary);
        }

        .search-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 25px;
            flex-wrap: wrap;
            gap: 15px;
            border-top: 1px solid var(--border-color);
            padding-top: 20px;
        }

        .toggle-advanced-btn {
            color: var(--primary);
            font-size: 13px;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
            transition: background 0.2s;
        }

        .toggle-advanced-btn:hover {
            background: rgba(37,99,235,0.1);
        }

        .btn-search {
            background: var(--primary);
            color: white;
            padding: 12px 30px;
            border-radius: var(--radius);
            font-weight: 600;
            font-size: 14px;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: var(--shadow-sm);
        }

        .btn-search:hover {
            background: var(--primary-hover);
        }

        .btn-reset {
            color: var(--text-muted);
            font-size: 12px;
            padding: 8px 12px;
            transition: color 0.2s;
        }

        .btn-reset:hover {
            color: var(--text-dark);
        }

        .section-title {
            font-size: 18px;
            font-weight: 600;
            margin: 30px 0 15px;
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 10px;
            display: inline-block;
            color: #1a1a1a;
        }

        .carousel-wrapper {
            position: relative;
            margin-bottom: 40px;
        }

        .carousel-container {
            display: flex;
            gap:16px;
            overflow-x: auto;
            padding: 10px 0;
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory;
        }

        .car-card-wrapper {
            flex: 0 0 auto;
            width: 260px;
            scroll-snap-align: start;
        }

        .car-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.05);
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .car-card:hover {
            box-shadow: var(--shadow-md);
        }

        .car-card-img-container {
            width: 100%;
            aspect-ratio: 4/3;
            position: relative;
            overflow: hidden;
            background: #f0f0f0;
            cursor: pointer;
        }

        .image-slider-track {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.3s ease-in-out;
        }

        .image-slide {
            min-width: 100%;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .car-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slider-controls button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgb(0 0 0 / 13%);
            color: white;
            width: 24px;
            height: 42px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 3px;
            z-index: 5;
            transition: background 0.2s;
        }

        .slider-controls button:hover {
            background: rgba(0,0,0,0.8);
        }

        .prev-button { left: 5px; }
        .next-button { right: 5px; }

        .car-card-action-buttons {
            position: absolute;
            bottom: 6px;
            left: 6px;
            display: flex;
            gap: 5px;
            z-index: 6;
        }

        .action-btn {
            background: rgb(0 0 0 / 45%);
            color: white;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 400;
            transition: background 0.2s;
            cursor: pointer;
        }

        .action-btn:hover {
            background: rgba(0,0,0,0.9);
        }

        .car-card-title {
            font-size: 14px;
            font-weight: 600;
            margin: 0px 0px 4px 0px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            color: #031422;
        }

        .car-card-vin-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 11px;
            color: var(--text-muted);
            margin-bottom: 8px;
            background: #f8f9fa;
            padding: 6px 8px;
            border-radius: 4px;
        }

        .copy-vin-btn {
            color: var(--primary);
            transition: opacity 0.2s;
        }

        .copy-vin-btn:hover {
            opacity: 0.7;
        }

        .car-card-badge-wrap {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 11px;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .badge-copart { color: #0056b3; }
        .badge-iaai { color: #d9230f; }

        .car-card-time-left {
            font-size: 13px;
            font-weight: 400;
            display: flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 10px;
        }

        .car-card-price-info {
            display: flex;
            justify-content: space-between;
            background-color: #f8f9fa; 
            padding: 10px;
            border-radius: 4px;
            margin-top: auto;
            font-size: 12px;
        }

        .price-block {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
        }

        .price-label {
           color: #7c8ca0;
           font-size: 12px;
           margin-bottom: 1px;
        }

        .price-value {
           font-weight: 600;
           font-size: 15px;
           color: #334150;
           font-family: 'Lato', sans-serif;
        }

        .dots-container {
            display: flex;
            justify-content: center;
            gap: 6px;
            margin-top: 15px;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ccc;
            transition: 0.2s;
        }

        .dot.active {
            background: var(--primary);
            width: 16px;
            border-radius: 4px;
        }

        #scrollToTopBtn {
            position: fixed;
            bottom: 80px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: var(--text-dark);
            color: white;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-md);
            z-index: 999;
            transition: opacity 0.2s;
        }

        #scrollToTopBtn:hover {
            opacity: 0.8;
        }

        .spinner {
            border: 3px solid rgba(0,0,0,0.1);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            border-left-color: var(--primary);
            animation: spin 1s linear infinite;
        }
        
        .spinner-overlay {
            position: absolute;
            inset: 0;
            background: rgba(240, 240, 240, 0.8);
            align-items: center;
            justify-content: center;
            z-index: 2;
        }

        .skeleton-card {
            background: #fff;
            border-radius: var(--radius);
            border: 1px solid var(--border-color);
            height: 380px;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .skeleton-img {
            width: 100%;
            aspect-ratio: 4/3;
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: skeleton-loading 1.5s infinite;
        }

        .skeleton-body {
            padding: 15px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .skeleton-line {
            height: 12px;
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: skeleton-loading 1.5s infinite;
            border-radius: 4px;
        }

        .skeleton-line.short { width: 60%; }
        .skeleton-line.mt-auto { margin-top: auto; height: 35px; }

        @keyframes skeleton-loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        #popularBrandsTitle {
            font-size: 18px;
            font-weight: 600;
            color: #1a1a1a;
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 10px;
            display: inline-block;
            margin-bottom: 1rem;
        }

        #popularBrandsList {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        #popularBrandsList a {
           display: inline-block;
           background-color: #e6edf678;
           color: #7f8fa4;
           padding: 5px 12px;
           border-radius: 20px;
           text-decoration: none;
           font-size: 0.9em;
           white-space: nowrap;
           border: 1px solid #e6edf6;
           transition: all 0.3s ease;
        }

        #popularBrandsList a:hover {
            background: var(--primary);
            color: #ffffff;
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(28, 155, 255, 0.2);
        }

        .seo-section {
            background-color: #f4f6f9;
            padding: 40px 0;
            margin-top: 40px;
        }

        .seo-container {
            background: #dee2e666;
            border-radius: var(--radius);
            padding: 30px;
            color: #6882a5;
            line-height: 1.7;
            max-height: 400px;
            overflow-y: auto;
        }

        .seo-heading-h2 {
            color: var(--primary);
            font-size: 14px;
            font-weight: 500;
            margin: 30px 0 15px;
        }

        .seo-heading-h3 {
            color: var(--primary);
            font-size: 14px;
            font-weight: 500;
            margin: 25px 0 10px;
        }

        .seo-paragraph { margin-bottom: 15px; font-size: 14px; }
        .seo-paragraph strong, .seo-cost-title strong, .seo-list-item strong { color: #374151; font-weight: 600; }
        .seo-list { list-style-type: disc; padding-left: 20px; margin-bottom: 20px; }
        .seo-list-item { margin-bottom: 8px; font-size: 14px; }
        .seo-cost-title { margin-bottom: 10px; font-size: 15px; }

        .seo-cities-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
            margin-bottom: 30px;
        }

        .seo-cities-list {
            flex: 1;
            min-width: 200px;
            list-style: none;
            padding: 0;
        }

        .seo-city-item {
            margin-bottom: 6px;
            font-size: 13px;
            position: relative;
            padding-left: 15px;
        }

        .seo-city-item::before {
            content: '\f105';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary);
        }

        @media (max-width: 768px) {
            .search-header {
                flex-direction: column;
                align-items: stretch;
            }
            .search-tabs {
                justify-content: center;
                margin-bottom: 15px;
            }
            .archive-wrapper {
                justify-content: space-between;
                border-top: 1px solid var(--border-color);
                border-bottom: 1px solid var(--border-color);
                padding: 15px 0;
                margin-bottom: 10px;
            }
            .archive-mobile-text {
                display: block;
                color: var(--text-light);
                font-size: 14px;
            }
            .filters-grid {
                grid-template-columns: 1fr 1fr;
            }
            .carousel-container {
               gap: 8px;
            }
            .search-actions > div {
                width: 100%;
            }
            .btn-search {
                width: 100%;
                justify-content: center;
            }
            .vehicle-type-btn {
                flex: 1;
                min-width: 40%;
                justify-content: center;
            }
            .btn-reset {
               display: none;
            }
            #producerSelectWrapper,
            #modelSelectWrapper,
            #buynow,
            .auction-toggles-wrapper {
                grid-column: span 2;
            }
            #yearFrom,
            #yearTo {
                grid-column: span 1;
            }
            .car-card-wrapper { width: calc(50% - 4px); }
            .title-caption {
                transform: translateY(-80px);
                text-align: left;
                display: flex;
                flex-direction: column;
                gap: 10px;
                margin-top: 52px;
            }
            .car-card-vin-container { flex-direction: row; align-items: center; justify-content: space-between; gap: 2px; padding: 4px; font-size: 11px;}
            .car-card-title { font-size: 12px; margin-bottom: 2px; }
            .car-card-badge-wrap { font-size: 11px;margin-bottom: 4px; }
            .car-card-time-left { font-size: 11px; margin-bottom: 4px; }
            .car-card-price-info { padding: 6px; font-size: 10px; flex-direction: row; align-items: center; justify-content: space-between; gap: 2px; }
            .price-block { flex-direction: column; align-items: flex-start; }
            .price-block:last-child { align-items: flex-end; }
            .price-label { font-size: 9px; margin-bottom: 1px; }
            .price-value { font-size: 12px; }
            .action-btn { font-size: 9px; padding: 4px 6px; }
            .car-card > div:nth-child(2) { padding: 6px !important; }
            .quick-access {
                display: flex;
                flex-wrap: wrap;
                justify-content: flex-start;
                gap: 6px;
            }
            .keep-together {
                gap: 6px;
            }
            .title-caption p { margin-left: 0; margin-right: 0; }
            .hero-section { min-height: 480px; }
            .title-caption h1, .title-caption h2 { font-size: 28px; }
            .title-caption p { font-size: 14px; }
            .quick-access li a { padding: 4px 8px; font-size: 11px; text-align: left; display: inline-block; white-space: normal; }
            .hero-buttons { display: flex; width: 100%; flex-direction: row; justify-content: flex-start; }
            .link-main { text-align: center; font-size: 13px; padding: 10px 16px; min-width: auto; }
            .hero-controls { left: 0; justify-content: center; }
            .seo-container { padding: 20px; }
            .seo-heading-h2 { font-size: 13px; margin: 20px 0 10px; }
            .seo-heading-h3 { font-size: 13px; margin: 15px 0 10px; }
            .seo-paragraph, .seo-list-item, .seo-cost-title { font-size: 12px; }
            .seo-cities-list { min-width: 140px; }
            .seo-cities-wrapper { gap: 10px; }
        }