 .car-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        .car-hero {
            text-align: center;
            margin-bottom: 4rem;
            padding-top: 3rem;
        }
        
        .car-badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            margin-bottom: 1rem;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #2563eb;
            background-color: #dbeafe;
            border-radius: 9999px;
        }
        
        .car-title {
            font-size: 3rem;
            font-weight: 800;
            color: #111827;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .car-subtitle {
            font-size: 1.25rem;
            color: #4b5563;
            max-width: 48rem;
            margin: 0 auto 1.5rem;
            line-height: 1.75;
        }
        
        .car-availability {
            font-size: 1.125rem;
            color: #6b7280;
            max-width: 48rem;
            margin: 0 auto;
            padding: 1rem;
            background-color: #f3f4f6;
            border-radius: 0.75rem;
            border-left: 4px solid #9ca3af;
        }
        
        .car-section {
            margin-bottom: 5rem;
        }
        
        .car-section-title {
            font-size: 1.875rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
        }
        
        .car-title-indicator {
            width: 0.5rem;
            height: 2rem;
            border-radius: 9999px;
            margin-right: 1rem;
        }
        
        .car-title-indicator-blue {
            background-color: #2563eb;
        }
        
        .car-title-indicator-black {
            background-color: #111827;
        }
        
        .car-cards-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        @media (min-width: 768px) {
            .car-cards-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .car-card {
            background-color: white;
            padding: 2rem;
            border-radius: 1rem;
            border: 1px solid #e5e7eb;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .car-card:hover {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
        }
        
        .car-card-icon {
            width: 3rem;
            height: 3rem;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .car-card-icon-blue {
            background-color: #dbeafe;
        }
        
        .car-card-icon-emerald {
            background-color: #d1fae5;
        }
        
        .car-card-icon-purple {
            background-color: #f3e8ff;
        }
        
        .car-card-icon i {
            font-size: 1.5rem;
        }
        
        .car-card-icon-blue i {
            color: #2563eb;
        }
        
        .car-card-icon-emerald i {
            color: #059669;
        }
        
        .car-card-icon-purple i {
            color: #7c3aed;
        }
        
        .car-card-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 0.75rem;
        }
        
        .car-card-text {
            font-size: 0.875rem;
            color: #4b5563;
            line-height: 1.6;
        }
        
        .car-section-header {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            margin-bottom: 2rem;
            gap: 1rem;
        }
        
        @media (min-width: 768px) {
            .car-section-header {
                flex-direction: row;
                align-items: center;
            }
        }
        
        .car-status-badge {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1rem;
            border-radius: 0.75rem;
            background-color: #f3f4f6;
            color: #4b5563;
            font-size: 0.875rem;
            font-weight: 600;
        }
        
        .car-status-dot {
            width: 0.5rem;
            height: 0.5rem;
            border-radius: 9999px;
            background-color: #9ca3af;
            margin-right: 0.5rem;
        }
        
        .car-roles-description {
            background-color: white;
            border-radius: 1rem;
            padding: 2rem;
            margin-bottom: 2rem;
            border: 1px solid #e5e7eb;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        }
        
        .car-roles-description h4 {
            font-size: 1.125rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 1rem;
        }
        
        .car-roles-list {
            list-style: none;
            margin-left: 1rem;
        }
        
        .car-roles-list li {
            margin-bottom: 0.5rem;
            color: #4b5563;
            position: relative;
            padding-left: 1.5rem;
        }
        
        .car-roles-list li:before {
            content: "•";
            color: #2563eb;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        .car-empty-state {
            background-color: rgba(243, 244, 246, 0.5);
            border: 2px dashed #e5e7eb;
            border-radius: 1.5rem;
            padding: 3rem;
            text-align: center;
        }
        
        .car-empty-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 4rem;
            height: 4rem;
            border-radius: 9999px;
            background-color: white;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            margin-bottom: 1.5rem;
        }
        
        .car-empty-icon i {
            color: #9ca3af;
            font-size: 1.5rem;
        }
        
        .car-empty-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 0.5rem;
        }
        
        .car-empty-text {
            color: #4b5563;
            max-width: 28rem;
            margin: 0 auto;
        }
        
        .car-cta-section {
            background-color: #2563eb;
            border-radius: 1.5rem;
            padding: 2rem;
            color: white;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            margin-bottom: 3rem;
        }
        
        @media (min-width: 768px) {
            .car-cta-section {
                padding: 3rem;
            }
        }
        
        .car-cta-bg-circle {
            position: absolute;
            top: -4rem;
            right: -4rem;
            width: 16rem;
            height: 16rem;
            background-color: #3b82f6;
            border-radius: 9999px;
            opacity: 0.2;
        }
        
        .car-cta-content {
            position: relative;
            z-index: 10;
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }
        
        @media (min-width: 768px) {
            .car-cta-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        .car-cta-title {
            color: white;
            font-size: 1.875rem;
            margin-bottom: 1.5rem;
        }
        
        .car-cta-text {
            color: #93c5fd;
            margin-bottom: 2rem;
            line-height: 1.7;
        }
        
        .car-cta-button {
            display: inline-flex;
            align-items: center;
            padding: 1rem 2rem;
            background-color: white;
            color: #2563eb;
            font-weight: 700;
            border-radius: 0.75rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        .car-cta-button:hover {
            background-color: #f9fafb;
            transform: translateY(-2px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }
        
        .car-cta-button i {
            margin-right: 0.5rem;
            font-size: 1.25rem;
        }
        
        .car-requirements-box {
            background-color: rgba(37, 99, 235, 0.5);
            border: 1px solid rgba(96, 165, 250, 0.3);
            border-radius: 1rem;
            padding: 1.5rem;
        }
        
        @media (min-width: 768px) {
            .car-requirements-box {
                padding: 2rem;
            }
        }
        
        .car-requirements-title {
            font-weight: 700;
            color:white;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }
        
        .car-requirements-title i {
            margin-right: 0.5rem;
            font-size: 1.25rem;
        }
        
        .car-requirements-list {
            list-style: none;
        }
        
        .car-requirements-list li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            color: #dbeafe;
            font-size: 0.875rem;
        }
        
        .car-requirements-list li:last-child {
            margin-bottom: 0;
        }
        
        .car-requirement-number {
            background-color: rgba(96, 165, 250, 0.4);
            width: 1.25rem;
            height: 1.25rem;
            border-radius: 0.25rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.625rem;
            margin-right: 0.75rem;
            margin-top: 0.125rem;
            flex-shrink: 0;
        }
        
        .car-email-address {
            font-weight: 600;
            color: white;
            margin-top: 1.5rem;
            font-size: 1.125rem;
        }
        
        .car-footer {
            text-align: center;
            padding: 2rem 0;
        }
        
        .car-security-note {
            display: inline-flex;
            align-items: center;
            padding: 0.75rem 1.5rem;
            background-color: white;
            border: 1px solid #f3f4f6;
            border-radius: 9999px;
            color: #6b7280;
            font-size: 0.75rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            max-width: 600px;
        }
        
        .car-security-note i {
            color: #10b981;
            margin-right: 0.5rem;
            font-size: 0.875rem;
        }
        
        @media (max-width: 640px) {
            .car-title {
                font-size: 2.25rem;
            }
            
            .car-subtitle {
                font-size: 1.125rem;
            }
            
            .car-cta-section {
                padding: 1.5rem;
            }
            
            .car-empty-state {
                padding: 2rem 1.5rem;
            }
            
            .car-roles-description {
                padding: 1.5rem;
            }
        }
        
        .car-highlight-link {
            color: #2563eb;
            text-decoration: none;
            font-weight: 500;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s;
        }
        
        .car-highlight-link:hover {
            border-bottom: 1px solid #2563eb;
        }