   
        :root {
            --earthy-red: #a52a2a; 
            --dark-red: #800000;
            --light-cream: #fdfaf5;
        }

        body {
            font-family: 'Manjari', sans-serif;
            font-size: 18px; 
            background-color: var(--light-cream);
            color: #333;
        }

        /* Wide Hero Banner */
        .hero-wide {
            width: 100%;
            height: 60vh;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                        url('/assets/img/img-hero.jpg'); /* Wide image placeholder */
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }

        .hero-wide h1 {
            font-size: 3.5rem;
            font-weight: 700;
            text-shadow: 3px 3px 10px rgba(0,0,0,0.7);
        }

        /* Navigation */
        .navbar {
            background-color: white;
            border-bottom: 4px solid var(--earthy-red);
        }

        /* Book Section */
        .book-container {
            margin-top: -80px; /* Overlap with hero */
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .book-cover {
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            margin: 70px auto 0 auto; /* Added 25px to the top margin */
        }

        .chapter-card {
            border: 1px solid #eee;
            transition: transform 0.3s;
            margin-bottom: 15px;
            border-left: 5px solid var(--earthy-red);
        }

        .chapter-card:hover {
            transform: translateX(10px);
            background-color: #fff8f8;
        }

        .btn-download {
            background-color: var(--earthy-red);
            color: white;
            border: none;
        }

        .btn-download:hover {
            background-color: var(--dark-red);
            color: white;
        }

        footer {
            background-color: var(--dark-red);
            color: white;
            padding: 40px 0;
            margin-top: 60px;
        }

         .author-container {
            margin-top: 20px;  
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
          .profile-img {
            padding: 24px;
            border-radius:  15px; 
            box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            min-height: 400px;
        }

        .content-section {
            padding: 40px;
        }

        .activity-list i {
            color: #1a5c2e;
            margin-right: 10px;
        }
    
        .tj {
         text-align: justify !important;
        }