
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        /* Newsletter Episode List */

        .episode-section {
            background-color: var(--gray);
            padding: 80px 0;
        }

        .episode-list {
            max-width: 900px;
            margin: auto;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .episode-card {
            display: block;
            padding: 35px 40px;
            border-radius: 35px;
            border: 3px solid var(--primary);
            background: white;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 5px 20px rgba(124, 77, 139, 0.05);
        }

        .episode-card:hover {
            transform: translateY(-5px) scale(1.01);
            box-shadow: 0 10px 35px rgba(124, 77, 139, 0.15);
        }

        .episode-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .episode-title {
            font-size: 1.6rem;
            color: var(--primary-dark);
            font-weight: 500;
        }

        .episode-meta {
            margin-top: 10px;
            font-size: 0.95rem;
            color: var(--text-light);
        }

        .episode-number {
            background: var(--primary);
            color: white;
            padding: 6px 18px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        :root {
            --primary: #7C4D8B;
            --primary-dark: #5A2D6E;
            --primary-light: #9D6BAD;
            --accent: #E8A798;
            --accent-dark: #D48977;
            --light: #FCF7F2;
            --dark: #2D1B30;
            --text: #3A3A3A;
            --text-light: #777777;
            --gray: #F5F0EB;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
            --nav-height: 80px;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            background-color: var(--light);
            line-height: 1.7;
            overflow-x: hidden;
            padding-top: var(--nav-height);
        }

        h1, h2, h3, h4, .quote, .chapter-title {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 500;
            line-height: 1.3;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 100px 0;
        }

        .btn {
            display: inline-block;
            padding: 16px 36px;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            letter-spacing: 0.5px;
        }

        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
        }

        /* Navigation Bar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            height: var(--nav-height);
        }

        .navbar.scrolled {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            height: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            z-index: 1001;
        }

        .logo span {
            color: var(--accent);
        }

        .logo i {
            margin-right: 10px;
            font-size: 1.5rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 1rem;
            transition: var(--transition);
            position: relative;
            padding: 5px 0;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-btns {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .nav-btn {
            padding: 10px 24px;
            font-size: 0.9rem;
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary);
            cursor: pointer;
            z-index: 1001;
        }

        /* Mobile Navigation */
        .mobile-nav {
            position: fixed;
            top: var(--nav-height);
            left: 0;
            width: 100%;
            height: 0;
            background-color: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: var(--transition);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
        }

        .mobile-nav.active {
            height: auto;
            opacity: 1;
            visibility: visible;
            padding: 20px 0;
        }

        .mobile-nav-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .mobile-nav-links li {
            width: 100%;
        }

        .mobile-nav-links a {
            text-decoration: none;
            color: var(--text);
            font-size: 1.1rem;
            padding: 15px 20px;
            display: block;
            transition: var(--transition);
            border-bottom: 1px solid #eee;
        }

        .mobile-nav-links a:hover {
            color: var(--primary);
            background-color: rgba(124, 77, 139, 0.05);
            padding-left: 30px;
        }

        .mobile-nav-links .btn {
            margin: 20px;
            display: block;
            text-align: center;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(124, 77, 139, 0.95) 0%, rgba(90, 45, 110, 0.95) 100%), 
                        url('https://images.unsplash.com/photo-1530092285049-1c42085fd395?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            margin-top: calc(-1 * var(--nav-height));
            padding-top: var(--nav-height);
        }

        .hero-content {
            max-width: 800px;
            position: relative;
            z-index: 2;
        }

        .hero-tagline {
            font-size: 1.1rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .hero h1 {
            font-size: 5rem;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 40px;
            opacity: 0.9;
            font-weight: 300;
        }

        .hero-btns {
            display: flex;
            gap: 15px;
            margin-top: 50px;
            flex-wrap: wrap;
        }

        .floating-element {
            position: absolute;
            opacity: 0.1;
            background: white;
            border-radius: 50%;
            animation: float 20s infinite linear;
        }

        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); }
            100% { transform: translateY(-1000px) rotate(360deg); }
        }

        /* Introduction */
        .intro {
            background-color: white;
        }

        .intro-inner {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .section-title {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--dark);
            text-align: center;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 50px;
            text-align: center;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .intro-quote {
            font-size: 2rem;
            font-style: italic;
            color: var(--primary);
            margin-bottom: 40px;
            line-height: 1.5;
            position: relative;
            padding: 0 40px;
        }

        .intro-quote::before, .intro-quote::after {
            content: '"';
            font-size: 4rem;
            color: var(--accent);
            position: absolute;
            opacity: 0.3;
        }

        .intro-quote::before {
            top: -20px;
            left: 0;
        }

        .intro-quote::after {
            bottom: -40px;
            right: 0;
        }

        /* Book Themes */
        .themes {
            background-color: var(--gray);
        }

        .theme-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .theme-card {
            background-color: white;
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            border-top: 5px solid var(--accent);
        }

        .theme-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .theme-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(124, 77, 139, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }

        .theme-icon i {
            font-size: 30px;
            color: var(--primary);
        }

        .theme-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        /* Chapters */
        .chapters-container {
            position: relative;
        }

        .chapter-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .chapter-nav-btn {
            padding: 10px 20px;
            background-color: white;
            border: 1px solid #eee;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
            font-size: 0.9rem;
        }

        .chapter-nav-btn:hover, .chapter-nav-btn.active {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .chapter-display {
            background-color: white;
            border-radius: 15px;
            padding: 50px;
            box-shadow: var(--shadow);
            min-height: 600px;
            position: relative;
        }

        .chapter-number {
            font-size: 1rem;
            color: var(--primary);
            margin-bottom: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .chapter-title {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 30px;
        }

        .chapter-excerpt {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text);
            margin-bottom: 30px;
        }

        .chapter-quote {
            font-size: 1.3rem;
            font-style: italic;
            color: var(--primary);
            border-left: 3px solid var(--accent);
            padding-left: 20px;
            margin: 40px 0;
        }

        .chapter-highlight {
            background-color: rgba(232, 167, 152, 0.1);
            padding: 25px;
            border-radius: 10px;
            margin-top: 30px;
            border-left: 4px solid var(--accent);
        }

        /* Chapter Navigation Buttons */
        .chapter-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid #eee;
        }
        
        .chapter-navigation-btn {
            padding: 12px 30px;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }
        
        .chapter-navigation-btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        
        .chapter-navigation-btn.outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        
        .chapter-navigation-btn.outline:hover {
            background-color: var(--primary);
            color: white;
        }
        
        .chapter-navigation-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none !important;
        }
        
        .chapter-navigation-btn:disabled:hover {
            background-color: var(--primary);
            transform: none !important;
            box-shadow: none !important;
        }
        
        /* Current Chapter Indicator */
        .chapter-indicator {
            text-align: center;
            color: var(--text-light);
            font-size: 0.9rem;
            margin-top: 15px;
            font-weight: 500;
        }
        
        .chapter-indicator .current {
            color: var(--primary);
            font-weight: 600;
        }

        /* Testimonial/Quote */
        .testimonial {
            background: linear-gradient(to right, var(--primary-dark), var(--primary));
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .testimonial-quote {
            font-size: 2.5rem;
            font-style: italic;
            margin-bottom: 30px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.4;
        }

        .testimonial-author {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Newsletter */
        .newsletter {
            background-color: white;
        }

        .newsletter-box {
            max-width: 700px;
            margin: 0 auto;
            background-color: var(--light);
            padding: 60px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            text-align: center;
        }

        .newsletter h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .form-group {
            display: flex;
            gap: 10px;
            margin-top: 30px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .form-input {
            flex: 1;
            min-width: 250px;
            padding: 18px 25px;
            border: 1px solid #ddd;
            border-radius: 50px;
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(124, 77, 139, 0.1);
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 80px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-logo {
            font-size: 2rem;
            margin-bottom: 20px;
            color: white;
        }

        .footer-about {
            max-width: 350px;
        }

        .footer-links h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--accent);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: var(--transition);
        }

        .social-icons a:hover {
            background-color: var(--accent);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        /* Chapter Selector */
        .chapter-selector {
            width: 100%;
            padding: 12px 20px;
            border: 1px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            margin-bottom: 20px;
            background-color: white;
            display: none;
        }

        /* Chapter Content Styling */
        .chapter-content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .chapter-content p.quote-line {
            font-style: italic;
            text-align: center;
            margin: 25px 0;
            padding: 0 20px;
            color: var(--primary);
            font-size: 1.2rem;
        }
        
        .chapter-content p.hindi-text {
            font-style: italic;
            margin: 15px 0;
            padding-left: 20px;
            color: var(--primary-dark);
        }
        
        .chapter-content .section-break {
            height: 2px;
            background: linear-gradient(to right, transparent, var(--accent), transparent);
            margin: 40px 0;
            width: 100%;
        }

        /* Responsive */
        @media (max-width: 1100px) {
            .nav-links {
                gap: 25px;
            }
        }

        @media (max-width: 992px) {
            .hero h1 {
                font-size: 4rem;
            }
            
            .testimonial-quote {
                font-size: 2rem;
            }
            
            .chapter-display {
                padding: 30px;
                min-height: 500px;
            }
            
            /* Hide desktop nav links and show mobile toggle */
            .nav-links {
                display: none;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .nav-btns .btn:not(.mobile-toggle) {
                display: none;
            }
            
            .chapter-nav {
                display: none;
            }
            
            .chapter-selector {
                display: block;
            }
            
            .chapter-navigation {
                flex-direction: column;
                gap: 15px;
            }
            
            .chapter-navigation-btn {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .intro-quote {
                font-size: 1.7rem;
                padding: 0 20px;
            }
            
            .form-group {
                flex-direction: column;
            }
            
            .form-input {
                min-width: 100%;
            }
            
            .newsletter-box {
                padding: 40px 20px;
            }
            
            .chapter-title {
                font-size: 2rem;
            }
            
            .nav-container {
                padding: 0 15px;
            }
            
            .chapter-content p {
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .section-padding {
                padding: 70px 0;
            }
            
            .hero-btns {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
            
            :root {
                --nav-height: 70px;
            }
            
            .logo {
                font-size: 1.5rem;
            }
            
            .chapter-display {
                padding: 20px;
            }
        }
        
        .hero-btns .btn {
            background: #fff;
            color: #000;
            border: 1px solid #000;
        }
        
        .hero-btns .btn:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

