body { 
    font-family: Arial, sans-serif; 
    text-align: center; 
    background-color: #f4f4f4; 
    padding: 20px;
}
@media (max-width: 768px) {
    .car-selection {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .car-option {
        width: 45%; /* Adjusts car selection buttons to fit smaller screens */
    }

    .car-btn {
        width: 100%;
        height: auto;
    }

    .input-container {
        flex-direction: column;
        align-items: stretch;
    }

    .input-box {
        width: 100%;
    }

    .form-section {
        width: 90%;
        padding: 15px;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    h2, h3 {
        font-size: 18px;
    }

    .car-option {
        width: 100%;
    }

    .form-section {
        width: 100%;
    }
}

.car-selection {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}
.car-option {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.car-btn {
    width: 150px;
    height: 100px;
    border: none;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s;
}
.car-btn:hover {
    transform: scale(1.1);
}
.car-name {
    margin-top: 5px;
    font-weight: bold;
}
.form-section {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: inline-block;
    margin-top: 20px;
}
.input-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.input-box {
    padding: 10px;
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: white;
    position: relative;
}
.input-box input {
    border: none;
    outline: none;
    width: 100%;
    padding: 5px;
}
.price-section {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    display: none;
}
.suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    display: none;
    max-height: 150px;
    overflow-y: auto;
    z-index: 1000;
}
.suggestions div {
    padding: 5px;
    cursor: pointer;
}
.suggestions div:hover {
    background: #f0f0f0;
}