<form>
    <!-- Ad Alanı -->
    <div class="mb-3">
        <label for="name" class="form-label">Adınız</label>
        <input type="text" class="form-control" id="name" placeholder="Adınızı girin">
    </div>

    <!-- E-posta Alanı -->
    <div class="mb-3">
        <label for="email" class="form-label">E-posta Adresiniz</label>
        <input type="email" class="form-control" id="email" placeholder="E-posta adresinizi girin">
    </div>

    <!-- Talep Türü Seçimi -->
    <div class="mb-3">
        <label for="requestType" class="form-label">Talep Türü</label>
        <select class="form-select" id="requestType">
            <option value="genel">Genel Soru</option>
            <option value="teknik">Teknik Destek</option>
            <option value="öneri">Öneri</option>
        </select>
    </div>

    <!-- QuillJS Zengin Metin Editörü -->
    <div class="mb-3">
        <label for="message" class="form-label">Mesajınız</label>
        <div id="message" style="height: 200px;"></div>
    </div>

    <!-- Gönder Butonu -->
    <button type="submit" class="btn btn-primary">Gönder</button>
</form>