I am working on a project where one of the parts i am creating a "contact us" section, where it includes general information like, address, gmail, telephone number, and a different part of it is an actual form where you can type in the information. I tend to rely alot on the "div" tag even though it is not semantic. I want to clean up my code and some how replace as many of these divs as possible with more semantic tags. I have tried to search up tags to somehow replace the divs i have, but can not find tags that i can replace them with.
This is a screenshot of the footer for some context https://i.stack.imgur.com/s2Cei.jpg
<footer>
<section class="contact">
<div class="content">
<h2>Contact Us</h2>
<p>
If you ever want to get in contact with us, or ask us
a question, do not hesitate to send us a message using
the form below!
</p>
</div>
<div class="container">
<div class="contactInfo">
<div class="box">
<div class="icon"><i class="fas fa-map-marker-alt"></i></div>
<div class="text">
<h3>Address</h3>
<p>5263 Fantasy Kebab Road, <br>Bergen, Norway, <br>55060</p>
</div>
</div>
<div class="box">
<div class="icon"><i class="fas fa-phone"></i></div>
<div class="text">
<h3>Phone</h3>
<p>21-666-9112</p>
</div>
</div>
<div class="box">
<div class="icon"><i class="far fa-envelope"></i></div>
<div class="text">
<h3>Email</h3>
<p>bigemail@gmail.com</p>
</div>
</div>
</div>
<form class="contactForm">
<h2>Send Message</h2>
<div class="inputBox">
<input type="text" name="full_name" required="required">
<span>Full Name</span>
</div>
<div class="inputBox">
<input type="text" name="email" required="required">
<span>Email</span>
</div>
<div class="inputBox">
<textarea required="required"></textarea>
<span>Type your Message...</span>
</div>
<div class="inputBox">
<input type="submit" name="submit_button" value="Send">
</div>
</form>
</div>
</section>
</footer>