Make sure that you actually take the customer survey for this to back results so you’re not lying. Lying here can get you in trouble!
<div class="progress-info">
<div class="image-container">
<img src="paste the link inside of these quotes" alt="Circle Image">
</div>
<div class="text-container">
<p>94.8% of women saw a decrease in cravings within two weeks.</p>
</div>
</div>
<style>
.progress-info {
display: flex;
align-items: center;
gap: 10px;
font-family: Arial, sans-serif;
}
.image-container {
width: 60px; /* Adjust according to your image size */
height: 60px; /* Adjust according to your image size */
}
.image-container img {
width: 100%;
height: auto;
display: block;
}
.text-container {
flex: 1; /* This will make the text container take up remaining space */
}
.text-container p {
margin: 0; /* Remove default margin */
font-size: 16px;
line-height: 1.4; /* Adjust line height as needed */
}
</style>