.sell-your-car {
    padding: 40px 0;
}

.sell-your-car form {
    max-width: 700px;
    width: 100%;
}

.sell-your-car h1,
.sell-your-car h2 {
    color: white;
    margin-bottom: 20px;
}

.sell-your-car .text-center p {
    color: white;
    font-size: 1.1rem;
}

.sell-your-car .form-section {
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
}

.sell-your-car legend {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    width: auto;
    padding: 0 10px;
}

.sell-your-car .form-group {
    margin-bottom: 15px;
}

.sell-your-car label {
    color: white;
    margin-bottom: 5px;
    display: block;
}

.sell-your-car .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.sell-your-car .form-control:focus {
    outline: none;
    border-color: #b32120;
}

.sell-your-car textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.sell-your-car .submit-btn {
    background: #b32120;
    color: #fff;
    border-radius: 5px;
    border: none;
    padding: 12px 40px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.sell-your-car .submit-btn:hover {
    background: #8f1a19;
    color: white;
}

.sell-your-car .submit-btn:focus {
    box-shadow: none;
}

.sell-your-car .hours {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
    color: white;
    margin-bottom: 20px;
}

.sell-your-car .hours h2 {
    margin-top: 0;
}

.sell-your-car .hours-day {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 10px;
}

.sell-your-car .map iframe {
    width: 100%;
    min-height: 300px;
    border-radius: 5px;
}

.sell-your-car .row {
    justify-content: center;
}

.sell-your-car .form-errors {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: none;
}

.sell-your-car .form-errors.show {
    display: block;
}

.sell-your-car .form-errors ul {
    margin: 0;
    padding-left: 20px;
}

a {
    color: #e01d48;
    text-decoration: none;
}