.quote-form-container {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #020d26;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.quote-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
}

.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"] {
    width: 100%;
    max-width: 300px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white;
    color: rgb(36, 34, 34);
}

.quote-form input[type="text"]::placeholder,
.quote-form input[type="email"]::placeholder,
.quote-form input[type="tel"]::placeholder {
    color: rgb(29, 27, 27);
    opacity: 0.8;
}

.quote-form button {
    padding: 10px 20px;
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.quote-form button:hover {
    background-color: #e65c00;
}

@media (max-width: 768px) {
    .quote-form {
        flex-direction: column; /* Stack items vertically on mobile */
    }

    .quote-form input[type="text"],
    .quote-form input[type="email"],
    .quote-form input[type="tel"],
    .quote-form button {
        max-width: 100%; /* Make inputs and button take full width */
    }
}
