 .logo-container {
           border: 1px solid #000; /* Black border */
           padding: 10px;
           margin: 10px;
           display: inline-block;
           position: relative;
           overflow: hidden; /* Hide overflow for rounded corners */
           border-radius: 8px; /* Rounded corners */
       }

       .brand-name {
           opacity: 0; /* Initially hide brand name */
           position: absolute;
           top: 50%;
           left: 50%;
           transform: translate(-50%, -50%);
           color: #fff;
           font-weight: bold;
           background-color: rgba(128, 128, 128, 0.8); /* Greyish transparent background */
           padding: 5px;
           border-radius: 5px; /* Rounded corners for the background */
           z-index: 1;
           transition: opacity 0.3s ease; /* Smooth transition for opacity */
       }

       .logo-container:hover .brand-name {
           opacity: 1; /* Show brand name on hover */
       }
 /* ===== Refined Luxury Car Section (Desktop) ===== */
.content-section {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-bottom: 50px;
}

.content-section h2 {
    font-size: 28px;
    color: #222;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
}

.content-section p {
    color: #444;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 25px;
}

.content-section ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.content-section ul li {
    position: relative;
    margin-bottom: 25px;
    padding-left: 25px; /* for bullet spacing */
    color: #333;
    font-size: 16px;
    line-height: 1.8;
}

/* Elegant gold bullet */
.content-section ul li::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #000;
    border-radius: 50%;
}

/* Brand name style */
.content-section ul li h3 {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
}

/* Optional subtle hover effect */
.content-section ul li:hover h3 {
    color: #000;
    transition: color 0.3s ease;
}

.faq-section {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.faq-title {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    padding: 10px 0;
}

/* Hide checkbox */
.faq-item input[type="checkbox"] {
    display: none;
}

/* Question styling */
.faq-question {
    display: block;
    font-size: 18px;
    color: #222;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    transition: color 0.3s ease;
}

/* Plus icon */
.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 22px;
    color: #000;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* When opened */
.faq-item input[type="checkbox"]:checked + .faq-question::after {
    content: "−";
    color: #000;
    transform: rotate(180deg);
}

.faq-item input[type="checkbox"]:checked + .faq-question {
    color: #000;
}

/* Answer styling */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.faq-item input[type="checkbox"]:checked ~ .faq-answer {
    max-height: 600px;
    opacity: 1;
    margin-top: 10px;
}

.faq-answer p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

/* ====== Uniform Blog Image Height (Guides & Insights) ====== */
.news-item__image {
    position: relative;
    width: 100%;
    height: 220px; /* Adjust height as needed */
    overflow: hidden;
    border-radius: 6px 6px 0 0;
}

.news-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps aspect ratio and fills the box */
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

/* Optional hover zoom effect */
.news-item__image:hover img {
    transform: scale(1.05);
}
.minht150{
    min-height: 160px;
}