.car-search-form {
    background-color: #1c0000;
    color: white;
    padding: 20px 30px;
    border-radius: 4px;
    max-width: 1200px;
    margin: 0 auto;
}

.car-search-form-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.car-search-form-left {
    flex: 1 1 20%;
    min-width: 200px;
}

.car-search-form-left h2 {
    font-size: 24px;
    margin: 0 0 5px;
    color: white;
}

.car-search-form-left p {
    font-size: 14px;
    margin: 0;
}

.car-search-form-right {
    flex: 1 1 75%;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.car-search-form select {
    flex: 1 1 30%;
    padding: 10px;
    border-radius: 4px;
    border: none;
    height: 45px;
    color: #555;
    background-color: white;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23555" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
}

.car-search-form select:disabled {
    background-color: #f0f0f0;
    cursor: not-allowed;
    color: #999;
}

.car-search-form button {
    flex: 1 1 auto;
    background-color: #e50000;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
    height: 45px;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.car-search-form button:hover {
    background-color: #c00000;
}

@media (max-width: 768px) {
    .car-search-form-wrapper {
        flex-direction: column;
    }

    .car-search-form-left, 
    .car-search-form-right {
        flex: 1 1 100%;
    }

    .car-search-form-right {
        flex-direction: column;
    }

    .car-search-form select,
    .car-search-form button {
        width: 100%;
    }
}