dgdfgdfgdfgdf
<style>
.product-post {
font-family: 'Arial', sans-serif;
background-color: #fff;
padding: 20px;
margin: 20px auto;
width: 80%;
max-width: 800px;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
h1 {
font-size: 2.5em;
color: #333;
margin-bottom: 10px;
text-align: center;
}
.description {
font-size: 1.3em;
color: #555;
margin-bottom: 20px;
text-align: center;
}
.pros-cons {
display: flex;
justify-content: space-between;
margin-bottom: 20px;
}
.pros, .cons {
width: 48%;
padding: 15px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.pros {
background-color: #e0f7fa;
border: 2px solid #00bcd4;
}
.cons {
background-color: #ffebee;
border: 2px solid #f44336;
}
.price {
font-size: 1.4em;
text-align: center;
margin-bottom: 20px;
}
.price .original-price {
text-decoration: line-through;
color: #999;
margin-right: 10px;
}
.price .offer-price {
color: #4caf50;
font-size: 1.6em;
font-weight: bold;
}
.order-now {
padding: 15px 30px;
background-color: #ff9800;
color: #fff;
border: none;
border-radius: 8px;
cursor: pointer;
font-size: 1.2em;
width: 100%;
max-width: 200px;
margin-top: 20px;
display: block;
margin-left: auto;
margin-right: auto;
}
.order-now:hover {
background-color: #f57c00;
}
</style>
<div class="product-post">
<h1>dfgdgdfgdfgdfg</h1>
<p class="description">dgdfgdfgdfgdf</p>
<div class="pros-cons">
<div class="pros">
<h3>প্রো</h3>
<p>dfgdfgdfgdfgddfgd</p>
</div>
<div class="cons">
<h3>কনস</h3>
<p>dggfdgdgdfdg</p>
</div>
</div>
<div class="price">
<span class="original-price">2432 BDT</span>
<span class="offer-price">2323 BDT</span>
</div>
<button class="order-now">অর্ডার করুন</button>
</div>