
                h1 {
                    margin-bottom: 20px;
                }

                .quote-form {
                    width: 500px;
                    padding: 20px;
                    background-color: #dbdde0;
                    border-radius: 4px;
                    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
                    margin: auto;
                    /* Center the form on the page */
                }

                .form-group {
                    margin-bottom: 15px;
                }

                label {
                    display: block;
                    margin-bottom: 5px;
                    font-weight: bold;
                }

                input,
                select,
                textarea {
                    width: 100%;
                    padding: 8px;
                    border: 1px solid #ccc;
                    border-radius: 4px;
                }

                .submit-button {
                    background-color: #eb1313;
                    color: white;
                    padding: 10px;
                    border: none;
                    border-radius: 4px;
                    cursor: pointer;
                }

                .submit-button:hover {
                    background-color: #333;
                }
       