/* Additional styles for hero image */
#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/lucid-exterior-topview.webp');
    background-size: cover;
    background-position: center;
}

/* Add styling for interior image section */
.interior-showcase {
    background: #fff;
    padding: 50px 0;
    text-align: center;
}

.interior-showcase img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 30px 0;
}

.interior-showcase h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.interior-showcase p {
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Add styling for specifications image */
.specs-image {
    text-align: center;
    margin: 40px 0;
}

.specs-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Animation for image hover */
.image-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-hover:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
