.pagination-wrap {
margin-top: 40px;
}
.pagination {
display: flex;
list-style: none;
justify-content: center;
}
.achieve__content__item p{
min-height: 50px;
margin-right: 50px;
}
.achieve__icon{
width: 40px;
height: 40px;
}
.accordion-collapse img{
padding: 5px 0px 20px 0px;
}
.about_author p{
padding: 1px 15px;
}
.buy-now-button {
position: fixed;
bottom: 25px;
right: 25px;
background-color: var(--primary);
color: white;
padding: 12px 20px;
border-radius: 8px;
font-size: 16px;
font-weight: bold;
text-decoration: none;
display: flex;
align-items: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
transition: background-color 0.3s ease;
z-index: 1000;
}
.buy-now-button:hover {
background-color: #fcb0b4;
color: #000;
}
/* Icon styling */
.buy-now-button i {
font-size: 20px; /* icon size */
margin-right: 8px; /* space between icon and text */
color: #fff;
}
.buy-now-button i:hover {
color: #000;
}
/* Responsive styling */
@media (max-width: 768px) {
.buy-now-button {
padding: 10px 16px;
font-size: 14px;
}
.buy-now-button i {
font-size: 18px;
}
}

.purchase_link{
    text-align: center;
    padding: 25px;
}

.social-share-buttons {
    display: flex;
    gap: 10px;
}
.social-share-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 17px;
    border-radius: 4px;
    padding: 4px 10px;
    transition: background-color 0.3s;
}
.facebook {
    background-color: #4267B2;
    /* Facebook blue color */
}
.whatsapp {
    background-color: #25D366;
    /* WhatsApp green color */
}
.social-share-button:hover {
    opacity: 0.8;
}