    /* style for book */
        .books-section {
      padding: 60px 20px;
      background: #f8f6f2;
      text-align: center;
    }
    .books-section h2 {
      font-size: 2rem;
      margin-bottom: 30px;
      color: #2c1b12;
    }

    .books-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      max-width: 1100px;
      margin: auto;
    }

    .book-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition: transform 0.2s ease;
    }

    .book-card:hover {
      transform: translateY(-5px);
    }

    .book-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .book-card h3 {
      font-size: 1rem;
      margin: 10px 0 5px;
      color: #2c1b12;
    }

    .book-card p {
      font-size: 0.85rem;
      padding: 0 10px 15px;
      color: #666;
    }

    .book-link {
      text-decoration: none;
      color: inherit;
      display: block;
    }

    .book-card {
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .book-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
    }

    .meta {
      font-size: 0.85rem;
      color: #666;
      margin: 8px 0;
      line-height: 1.4;
    }


