.head-left img {
    width: auto;
    /*height: 140px;*/
}


.about-section{
    padding: 50px 0;
    background: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center; 
    text-align: center;
}

.sec-title{
    font-size: 30px;
    font-weight: bold;
    color: #2c3e50;
    text-align: start;
}

.about-section p ,.who-we-are p{
    color: #333;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    line-height: 1.5;
}
.about-section .subtitle {
    font-weight:500;
}   

.what-we-do-list, .why-us{
    list-style:none;
    color: #333;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    padding:0;
    
}
.what-we-do-list li ,.why-us li{
    display: flex;
    align-items: flex-start;
}
.what-we-do-list li> i, .why-us li> i{
    font-size: 16px;
    font-family: 'Roboto Condensed', sans-serif;
    color:#ed3f41;
    line-height: 1.5;
    margin:0 8px 0 0;
    
}

.category-book {
    border-left: 5px solid #eb4b45;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    background: #257cc3;
    color: #fff;
    padding: 5px 10px;
}

.book-card {
    padding: 10px;
}

.book-category {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 2px;
    z-index: 1;
    padding: 3px 5px;
    color: #fff;
    background: #257cc3;
}
.book-image{
    transition: transform 0.3s ease;
}

.book-image {
    position: relative;
    justify-self:center;
}

.book-image:hover {
  transform: scale(1.1);
}

.book-cover-img {
    height: 320px;
    width: 200px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 8px 0px, rgba(0, 0, 0, 0.19) 0px 6px 20px 0px;
}
.book-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
}

.book-details-container {
    display: flex;
    flex-wrap: wrap;
    /* max-width: 900px; */
     margin: 20px 30px; 
    /* padding: 20px; */
    gap: 30px;
    /* border: 1px solid #ccc; */
    /* border-radius: 12px; */
    /* box-shadow: 0 4px 10px rgba(0,0,0,0.1); */
    /* background-color: #fff; */
}

.book-details-container .book-image {
  flex: 1 1 250px;
  text-align: center;
}

.book-details-container .book-image img {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: cover;
}


.book-info {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
}

.book-info .title {
    font-size: 2.8rem;
    margin:0 0 10px 0;
    font-weight: 600;
    color: #585858;
}

.book-info .author {
  color: #555;
    margin:0 0 10px 0;
}

.book-info .description {
  font-size: 1.5rem;
  font-family:'Roboto Condensed', sans-serif;
  margin-bottom: 10px;
  line-height: 1.4;
}



/*  Responsive layout for small screens */
@media (max-width: 768px) {
  .book-details-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .book-info {
    align-items: center;
  }

  .buy-button {
    align-self: center;
  }
}