* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #64748b;
    --background: #f8fafc;
    --text-color: #1e293b;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --error-color: #ef4444;
    --card-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: white;
    box-shadow: var(--card-shadow);
    padding: 1rem 0;
    position: relative;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: inline-block;
    text-decoration: none;
    line-height: 0;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
    transition: transform 0.2s ease;
}

.logo img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .logo img {
        height: 40px;
    }
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Search Box */
.search-box {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    background: white;
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

#regnr-input {
    flex: 1;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-radius: 50px;
    outline: none;
    text-transform: uppercase;
}

#search-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.1s;
}

#search-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
}

#search-btn:active {
    transform: translateY(0);
}

/* Messages */
.error-message {
    max-width: 600px;
    margin: 1.5rem auto 0;
    padding: 1rem 1.5rem;
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--error-color);
    border-radius: 8px;
    border-left: 4px solid var(--error-color);
}

.loading {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Results Section */
.results {
    padding: 3rem 0;
    background-color: white;
}

.results h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.vehicle-info {
    background: white;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.info-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 2rem;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vehicle-title {
    flex: 1;
}

.vehicle-title h4 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.info-header .subtitle {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.95;
    font-size: 1.3rem;
    margin-top: 0.5rem;
}

.vehicle-description {
    margin-top: 0.75rem;
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 400;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: inline-block;
}

/* Status Badge */
.status-badge {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    white-space: nowrap;
}

.status-badge-registered {
    background-color: #10b981;
    color: white;
}

.status-badge-unregistered {
    background-color: #ef4444;
    color: white;
}

.brand-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-left: 2rem;
}

.info-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.info-section {
    background: white;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.info-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--background);
    border-bottom: 2px solid var(--border-color);
}

.section-icon {
    font-size: 1.5rem;
}

.section-header h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.inspection-section {
    grid-column: 1 / -1;
}

.inspection-section .section-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-bottom: none;
}

.inspection-section .info-item {
    background: #f0fdf4;
    border: none;
    padding: 1.5rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
}

.info-item {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    transition: background-color 0.2s;
}

.info-item:hover {
    background-color: #f8fafc;
}

.info-item:nth-child(2n) {
    background-color: var(--background);
}

.info-item:nth-child(2n):hover {
    background-color: #f1f5f9;
}

.info-label {
    font-size: 0.875rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Info Icon Tooltip */
.info-icon {
    cursor: pointer;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    user-select: none;
}

.info-icon::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 1000;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
}

.info-icon::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-2px);
    border: 6px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 1000;
}

.info-icon:hover::after,
.info-icon:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Mobile: Show tooltip on click */
@media (max-width: 768px) {
    .info-icon:active::after,
    .info-icon:active::before {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.info-value {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 4rem 0;
}

.features h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-card p {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.faq-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s;
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #fafbfc;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: var(--secondary-color);
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Blog Styles */
.blog-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.blog-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.blog-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.blog-list {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.blog-card a {
    display: block;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
}

.blog-card .category {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.blog-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--text-color);
    transition: color 0.3s;
}

.blog-card a:hover h3 {
    color: var(--primary-color);
}

.blog-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-card .blog-meta {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Blog Post */
.blog-post {
    background-color: white;
}

.blog-post .breadcrumb {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 2rem 1rem;
    color: #64748b;
    font-size: 0.9rem;
}

.blog-post .breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.blog-post .breadcrumb a:hover {
    text-decoration: underline;
}

.blog-post .post-header,
.blog-post-header {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem 2rem 2rem;
}

.blog-post .post-header .category {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.blog-post .post-header h1 {
    font-size: 2.5rem;
    color: var(--text-color);
    line-height: 1.2;
    margin: 1rem 0;
}

.blog-post .post-meta {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    color: #64748b;
    font-size: 0.95rem;
    margin-top: 1rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.blog-post .post-content,
.blog-post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.blog-post .post-content .intro {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 500;
    line-height: 1.6;
}

.blog-post .post-content h2,
.blog-post-content h2 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.blog-post .post-content h3,
.blog-post-content h3 {
    color: var(--text-color);
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.blog-post .post-content p,
.blog-post-content p {
    margin-bottom: 1.5rem;
    color: #475569;
    line-height: 1.8;
}

.blog-post .post-content ul, 
.blog-post .post-content ol,
.blog-post-content ul, 
.blog-post-content ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.blog-post .post-content li,
.blog-post-content li {
    margin-bottom: 0.8rem;
    color: #475569;
    line-height: 1.7;
}

.blog-post .post-content a,
.blog-post-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.blog-post .post-content a:hover,
.blog-post-content a:hover {
    color: var(--primary-dark);
}

.blog-post .post-content .tip,
.blog-post-content .tip {
    background-color: #e8f5e9;
    border-left: 4px solid #4caf50;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    font-size: 1rem;
}

.blog-post .post-content .tip strong {
    color: #2e7d32;
}

.blog-post .post-content .warning,
.blog-post-content .warning {
    background-color: #fff3e0;
    border-left: 4px solid #ff9800;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.blog-post .post-content .cta-box,
.blog-post-content .cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.blog-post .post-content .cta-box h3,
.blog-post-content .cta-box h3 {
    color: white;
    margin-top: 0;
    margin-bottom: 1rem;
}

.blog-post .post-content .cta-box p,
.blog-post-content .cta-box p {
    color: white;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.blog-post .post-footer {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    border-top: 2px solid #f0f0f0;
    text-align: center;
}

.blog-post .back-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: transform 0.3s;
}

.blog-post .back-link:hover {
    transform: translateX(-5px);
    text-decoration: underline;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    margin-top: 1rem;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    color: var(--primary-dark);
}

.blog-post-content .disclaimer {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 3rem;
    font-size: 0.9rem;
}

.blog-post-footer {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    border-top: 2px solid #f0f0f0;
    text-align: center;
}

.blog-post-footer p {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

/* Content Pages (Legal, etc.) */
.content-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background-color: white;
}

.content-page h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.content-page .last-updated {
    text-align: center;
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.content-section {
    margin-bottom: 2.5rem;
}

.content-section h2 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.content-section h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-section p {
    color: var(--secondary-color);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-section ul,
.content-section ol {
    color: var(--secondary-color);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

.content-section a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.content-section a:hover {
    border-bottom-color: var(--primary-color);
}

.content-section strong {
    color: var(--text-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .content-page {
        padding: 2rem 1.5rem;
    }
    
    .content-page h1 {
        font-size: 2rem;
    }
    
    .content-section h2 {
        font-size: 1.3rem;
    }
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .search-box {
        flex-direction: column;
        border-radius: 12px;
    }

    #regnr-input, #search-btn {
        border-radius: 8px;
    }

    .hamburger {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        background: white;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        height: calc(100vh - 70px);
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }
    
    nav li {
        border-bottom: 1px solid #f0f0f0;
    }
    
    nav a {
        display: block;
        padding: 1rem 1.5rem;
        color: var(--text-color);
    }
    
    nav a:hover {
        background-color: #f8f9fa;
        color: var(--primary-color);
    }

    .info-sections {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-item {
        border-right: none;
    }

    .header-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
    }

    .vehicle-title {
        flex: 1;
        min-width: 0;
    }

    .vehicle-title h4 {
        font-size: 1.8rem;
    }

    .info-header .subtitle {
        font-size: 1.1rem;
    }

    .vehicle-title > div[style*="display: flex"] {
        justify-content: flex-start !important;
        flex-wrap: wrap;
    }

    .vehicle-description {
        text-align: left;
    }

    .brand-logo {
        width: 110px;
        height: 110px;
        margin-left: 0;
        flex-shrink: 0;
        padding: 12px;
    }
}
