.crf-box {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    max-width: 900px;
    margin: 30px auto;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    direction: ltr;
    font-family: Arial, sans-serif;
}

.crf-box h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.crf-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.crf-form .form-field {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
}

.crf-form .full-width {
    flex: 1 1 100%;
}

.crf-form label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #444;
}

.crf-form input,
.crf-form select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    transition: border 0.3s;
}

.crf-form input:focus,
.crf-form select:focus {
    border-color: #007cba;
}

.crf-form button {
    padding: 12px 20px;
    background: #007cba;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.crf-form button:hover {
    background: #005fa3;
}

.available-cars {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.car-card {
    border: 1px solid #ddd;
    padding: 15px;
    width: 250px;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    background: #fff;
}

.car-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #222;
}

.car-card p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
}

.car-card a {
    background: #007cba;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    transition: background 0.3s;
}

.car-card a:hover {
    background: #005fa3;
}

@media (max-width: 768px) {
    .crf-form {
        flex-direction: column;
    }
}
