        :root {
            --navbar-height: 80px;
        }
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            line-height: 1.6;
            color: #222222;
            background-color: #faf9f7;
            overflow-x: hidden;
            
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Lora', serif;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 1rem;
            color: #1a1a1a;
        }

        p {
            margin-bottom: 1.5rem;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .btn {
            display: inline-block;
            padding: 0.85rem 2rem;
            font-weight: 600;
            font-size: 0.95rem;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            text-align: center;
        }

        .btn-primary {
            background-color: #2c5530;
            color: #ffffff;
        }

        .btn-primary:hover {
            background-color: #1e3a23;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(44, 85, 48, 0.15);
        }

        .btn-secondary {
            background-color: transparent;
            color: #2c5530;
            border: 1px solid #2c5530;
        }

        .btn-secondary:hover {
            background-color: rgba(44, 85, 48, 0.05);
            transform: translateY(-2px);
        }

        .btn-small {
            padding: 0.6rem 1.5rem;
            font-size: 0.85rem;
        }

        .section {
            padding: 5rem 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #666666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(250, 249, 247, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Lora', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a1a1a;
        }

        .logo span {
            color: #2c5530;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 2rem;
        }

        .nav-links a {
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #2c5530;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

       /* Hero Section - Enhanced for 100vh harmony */
            .hero {
                height: 100vh;
                min-height: 600px; /* Minimum height for smaller screens */
                max-height: 100vh;
                overflow: hidden;
                display: flex;
                align-items: center;
                justify-content: center;
                position: relative;
                background-color: #faf9f7;
            }

            .container-hero {
                width: 100%;
                max-width: 1400px;
                height: 100%;
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 0 4rem;
                gap: 4rem;
            }

            .hero-content {
                flex: 1;
                max-width: 600px;
                padding-right: 2rem;
                animation: fadeInUp 0.8s ease-out 0.2s both;
            }

            .hero-title {
                font-size: 3.75rem;
                margin-bottom: 1.5rem;
                line-height: 1.15;
                letter-spacing: -0.02em;
            }

            .hero-subtitle {
                font-size: 1.25rem;
                line-height: 1.6;
                color: #555555;
                margin-bottom: 2.5rem;
                max-width: 90%;
            }

            .hero-actions {
                display: flex;
                gap: 1rem;
                flex-wrap: wrap;
            }

            .hero-image {
                flex: 1;
                max-width: 50%;
                height: 85vh;
                display: flex;
                align-items: center;
                justify-content: center;
                position: relative;
                border-radius: 16px;
                overflow: hidden;
                box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
                animation: fadeIn 0.8s ease-out 0.4s both;
            }

            .hero-image::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(45deg, rgba(44, 85, 48, 0.1), rgba(123, 31, 162, 0.1));
                z-index: 1;
                border-radius: 16px;
            }

            .hero-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
                transition: transform 1s ease;
                border-radius: 16px;
            }

            .hero-image:hover img {
                transform: scale(1.03);
            }

            /* Smooth entrance animations */
            @keyframes fadeInUp {
                from {
                    opacity: 0;
                    transform: translateY(30px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            @keyframes fadeIn {
                from {
                    opacity: 0;
                }
                to {
                    opacity: 1;
                }
            }

            /* Enhanced responsiveness for tablet */
            @media (max-width: 1200px) {
                .hero-title {
                    font-size: 3.25rem;
                }
                
                .container-hero {
                    padding: 0 3rem;
                    gap: 3rem;
                }
            }

            @media (max-width: 992px) {
                .hero {
                    height: auto;
                    min-height: auto;
                    max-height: none;
                    padding-top: calc(var(--navbar-height) + 2rem);
                    padding-bottom: 4rem;
                }
                
                .container-hero {
                    flex-direction: column;
                    gap: 3rem;
                    padding: 0 2rem;
                }
                
                .hero-content {
                    max-width: 100%;
                    padding-right: 0;
                    text-align: center;
                }
                
                .hero-subtitle {
                    max-width: 100%;
                    margin-left: auto;
                    margin-right: auto;
                }
                
                .hero-actions {
                    justify-content: center;
                }
                
                .hero-image {
                    max-width: 100%;
                    width: 100%;
                    height: 400px;
                    order: -1; /* Image first on mobile */
                }
                
                .hero-title {
                    font-size: 2.75rem;
                }
            }

            @media (max-width: 768px) {
                .hero-title {
                    font-size: 2.25rem;
                }
                
                .hero-subtitle {
                    font-size: 1.1rem;
                }
                
                .hero-actions {
                    flex-direction: column;
                    width: 100%;
                }
                
                .hero-actions .btn {
                    width: 100%;
                    max-width: 300px;
                    margin: 0 auto;
                }

                .hero-image {
                    max-width: 100%;
                    width: 100%;
                    height: 200px;
                    order: -1; /* Image first on mobile */
                }
            }
         /* About Section - Mind Access */
        .mind-access-about-section {
            padding: 6rem 0;
            background-color: #faf9f7;
            font-family: 'Inter', sans-serif;
        }
        
        .mind-access-about-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        /* Main Layout */
        .mind-access-about-layout {
            display: flex;
            gap: 5rem;
            align-items: flex-start;
        }
        
        .mind-access-about-content {
            flex: 1.2;
        }
        
        .mind-access-about-cards {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        /* Typography */
        .mind-access-about-heading {
            font-family: 'Lora', serif;
            font-size: 2.8rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 2.5rem;
            line-height: 1.2;
            letter-spacing: -0.01em;
        }
        
        .mind-access-about-heading span {
            color: #2c5530;
        }
        
        .mind-access-about-description {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #444444;
            margin-bottom: 2rem;
        }
        
        .mind-access-about-paragraph {
            margin-bottom: 1.8rem;
        }
        
        .mind-access-about-paragraph:last-child {
            margin-bottom: 0;
        }
        
        /* Cards */
        .mind-access-about-card {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(44, 85, 48, 0.08);
            transition: all 0.3s ease;
        }
        
        .mind-access-about-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            border-color: rgba(44, 85, 48, 0.15);
        }
        
        .mind-access-about-card-heading {
            font-family: 'Lora', serif;
            font-size: 1.6rem;
            font-weight: 600;
            color: #2c5530;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        
        .mind-access-about-card-icon {
            font-size: 1.4rem;
        }
        
        .mind-access-about-card-content {
            font-size: 1rem;
            line-height: 1.6;
            color: #444444;
        }
        
        /* Values List */
        .mind-access-values-list {
            margin-top: 2.5rem;
            padding-top: 2.5rem;
            border-top: 1px solid rgba(44, 85, 48, 0.1);
        }
        
        .mind-access-values-heading {
            font-family: 'Lora', serif;
            font-size: 1.4rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 1.5rem;
        }
        
        .mind-access-values-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }
        
        .mind-access-value-item {
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
        }
        
        .mind-access-value-icon {
            color: #2c5530;
            font-size: 1.1rem;
            margin-top: 0.2rem;
            min-width: 1.1rem;
        }
        
        .mind-access-value-text {
            font-size: 0.95rem;
            line-height: 1.5;
            color: #555555;
        }
        
        /* Footer Note */
        .mind-access-about-footer {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(44, 85, 48, 0.1);
        }
        
        .mind-access-about-footer-text {
            font-size: 1.05rem;
            font-weight: 500;
            color: #2c5530;
            font-style: italic;
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Responsive Design */
        @media (max-width: 1100px) {
            .mind-access-about-layout {
                gap: 3rem;
            }
            
            .mind-access-about-heading {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 900px) {
            .mind-access-about-layout {
                flex-direction: column;
            }
            
            .mind-access-values-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 600px) {
            .mind-access-about-container {
                padding: 0 1.5rem;
            }
            
            .mind-access-about-heading {
                font-size: 2.2rem;
            }
            
            .mind-access-about-card {
                padding: 2rem;
            }
            
            .mind-access-about-description {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .mind-access-about-card {
                padding: 1.8rem;
            }
            
            .mind-access-about-card-heading {
                font-size: 1.4rem;
            }
            
            .mind-access-values-grid {
                gap: 1.2rem;
            }
        }

        /* Featured Writings */
        .featured-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .featured-card {
            background-color: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }

        .featured-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        }

        .featured-card-image {
            height: 220px;
            overflow: hidden;
        }

        .featured-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .featured-card:hover .featured-card-image img {
            transform: scale(1.05);
        }

        .featured-card-content {
            padding: 1.8rem;
        }

        .featured-card-category {
            display: inline-block;
            background-color: rgba(44, 85, 48, 0.1);
            color: #2c5530;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .featured-card-title {
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
        }

        .featured-card-excerpt {
            color: #666666;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .featured-card-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
            color: #888888;
            border-top: 1px solid #eeeeee;
            padding-top: 1rem;
        }

        #library{
            background-color: #ffff;
        }

        /* Filter Bar */
        .filter-bar {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-bottom: 3rem;
            padding: 1.5rem;
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
        }

        .filter-btn {
            padding: 0.6rem 1.5rem;
            background-color: transparent;
            border: 1px solid #e0e0e0;
            border-radius: 50px;
            font-weight: 500;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn:hover, .filter-btn.active {
            background-color: #2c5530;
            color: #ffffff;
            border-color: #2c5530;
        }

        /* Library Feed */
        .library-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .article-card {
            background-color: #ffffff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        }

        .article-card-image {
            height: 180px;
            overflow: hidden;
        }

        .article-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .article-card:hover .article-card-image img {
            transform: scale(1.05);
        }

        .article-card-content {
            padding: 1.5rem;
        }

        .article-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 0.8rem;
        }

        .article-card-category {
            font-size: 0.75rem;
            font-weight: 600;
            color: #2c5530;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .article-access-badge {
            font-size: 0.7rem;
            font-weight: 600;
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
        }

        .badge-free {
            background-color: rgba(76, 175, 80, 0.1);
            color: #2e7d32;
        }

        .badge-subscriber {
            background-color: rgba(156, 39, 176, 0.1);
            color: #7b1fa2;
        }

        .article-card-title {
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
        }

        .article-card-description {
            color: #666666;
            font-size: 0.9rem;
            margin-bottom: 1.2rem;
        }

        .article-card-meta {
            font-size: 0.8rem;
            color: #888888;
            border-top: 1px solid #eeeeee;
            padding-top: 0.8rem;
        }

         /* Audiobooks & Podcasts Introduction Sections */
        .mind-access-audio-section {
            margin: 6rem 0;
            font-family: 'Inter', sans-serif;
        }
        
        .mind-access-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        /* Shared Layout */
        .mind-access-audio-intro {
            display: flex;
            align-items: center;
            gap: 5rem;
            margin-bottom: 8rem;
        }
        
        .mind-access-audio-content {
            flex: 1;
        }
        
        .mind-access-audio-image-container {
            flex: 1;
            display: flex;
            justify-content: center;
        }
        
        .mind-access-audio-image {
            width: 100%;
            max-width: 500px;
            height: 380px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }
        
        .mind-access-audio-image:hover {
            transform: translateY(-5px);
        }
        
        .mind-access-audio-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Typography */
        .mind-access-audio-heading {
            font-family: 'Lora', serif;
            font-size: 2.8rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            letter-spacing: -0.01em;
        }
        
        .mind-access-audio-heading span {
            color: #2c5530;
        }
        
        .mind-access-audio-description {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #444444;
            margin-bottom: 2.5rem;
        }
        
        .mind-access-audio-paragraph {
            margin-bottom: 1.5rem;
        }
        
        .mind-access-audio-paragraph:last-child {
            margin-bottom: 0;
        }
        
        /* CTA Buttons */
        .mind-access-audio-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem 2.2rem;
            background-color: #2c5530;
            color: #ffffff;
            font-weight: 600;
            font-size: 1rem;
            border-radius: 6px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .mind-access-audio-cta:hover {
            background-color: #1e3a23;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(44, 85, 48, 0.15);
        }
        
        .mind-access-audio-cta i {
            font-size: 1.1rem;
        }
        
        /* Divider */
        .mind-access-section-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(44, 85, 48, 0.1), transparent);
            margin: 4rem auto;
            max-width: 800px;
        }
        
        /* Responsive Design */
        @media (max-width: 1100px) {
            .mind-access-audio-intro {
                gap: 3rem;
            }
            
            .mind-access-audio-heading {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 900px) {
            .mind-access-audio-intro {
                flex-direction: column;
                text-align: center;
            }
            
            .mind-access-audio-content {
                order: 2;
            }
            
            .mind-access-audio-image-container {
                order: 1;
                width: 100%;
            }
            
            .mind-access-audio-image {
                max-width: 600px;
                height: 320px;
            }
            
            .mind-access-audio-description {
                text-align: left;
            }
        }
        
        @media (max-width: 600px) {
            .mind-access-container {
                padding: 0 1.5rem;
            }
            
            .mind-access-audio-heading {
                font-size: 2.2rem;
            }
            
            .mind-access-audio-image {
                height: 250px;
            }
            
            .mind-access-audio-description {
                font-size: 1rem;
            }
            
            .mind-access-audio-cta {
                width: 100%;
                justify-content: center;
            }
        }

        /* Subscription Section */
        .subscription-section {
            background-color: #ffffff;
            border-radius: 15px;
            padding: 4rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            text-align: center;
        }

        .subscription-title {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
        }

        .subscription-text {
            font-size: 1.1rem;
            color: #666666;
            max-width: 700px;
            margin: 0 auto 2.5rem;
        }

        .subscription-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
            text-align: left;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .benefit-icon {
            font-size: 1.5rem;
            color: #2c5530;
            margin-top: 0.2rem;
        }

        .benefit-content h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .benefit-content p {
            font-size: 0.9rem;
            color: #666666;
            margin-bottom: 0;
        }

        /* Reader Page */
        .reader-page {
            display: none;
            padding-top: 8rem;
        }

        .article-header {
            position: relative;
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 3rem;
        }

        .article-header-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .article-header-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 3rem;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            color: #ffffff;
        }

        .article-header-category {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.2);
            color: #ffffff;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 0.4rem 1rem;
            border-radius: 50px;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            backdrop-filter: blur(5px);
        }

        .article-header-title {
            font-size: 3rem;
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .article-meta {
            display: flex;
            gap: 2rem;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .article-content {
            max-width: 800px;
            margin: 0 auto 4rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .article-content h2 {
            font-size: 2rem;
            margin-top: 3rem;
            margin-bottom: 1.5rem;
        }

        .article-content h3 {
            font-size: 1.5rem;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
        }

        .article-content p {
            margin-bottom: 1.8rem;
        }

        .article-content blockquote {
            border-left: 4px solid #2c5530;
            padding-left: 2rem;
            margin: 2.5rem 0;
            font-style: italic;
            color: #555555;
            font-size: 1.2rem;
        }

        .article-content em {
            font-style: italic;
            color: #444444;
        }

        .reading-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: rgba(44, 85, 48, 0.1);
            z-index: 1001;
        }

        .reading-progress-bar {
            height: 100%;
            background-color: #2c5530;
            width: 0%;
            transition: width 0.3s ease;
        }
         /* Ebooks Introduction Section */
        .mind-access-ebooks-section {
            padding: 6rem 0;
            background-color: #ffffff;
            font-family: 'Inter', sans-serif;
        }
        
        .mind-access-ebooks-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        /* Main Layout */
        .mind-access-ebooks-layout {
            display: flex;
            gap: 5rem;
            align-items: center;
        }
        
        .mind-access-ebooks-content {
            flex: 1;
        }
        
        .mind-access-ebooks-features {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        /* Typography */
        .mind-access-ebooks-heading {
            font-family: 'Lora', serif;
            font-size: 2.8rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 1.8rem;
            line-height: 1.2;
            letter-spacing: -0.01em;
        }
        
        .mind-access-ebooks-heading span {
            color: #2c5530;
        }
        
        .mind-access-ebooks-subtitle {
            font-size: 1.3rem;
            font-weight: 500;
            color: #2c5530;
            margin-bottom: 1.5rem;
            font-family: 'Lora', serif;
        }
        
        .mind-access-ebooks-description {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #444444;
            margin-bottom: 2.5rem;
        }
        
        .mind-access-ebooks-paragraph {
            margin-bottom: 1.8rem;
        }
        
        .mind-access-ebooks-paragraph:last-child {
            margin-bottom: 0;
        }
        
        /* CTA Button */
        .mind-access-ebooks-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem 2.2rem;
            background-color: #2c5530;
            color: #ffffff;
            font-weight: 600;
            font-size: 1rem;
            border-radius: 6px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .mind-access-ebooks-cta:hover {
            background-color: #1e3a23;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(44, 85, 48, 0.15);
        }
        
        .mind-access-ebooks-cta i {
            font-size: 1.1rem;
        }
        
        /* Feature Cards */
        .mind-access-ebooks-feature-card {
            background-color: #faf9f7;
            border-radius: 12px;
            padding: 2.2rem;
            border-left: 4px solid #2c5530;
            transition: all 0.3s ease;
            border-top: 1px solid rgba(44, 85, 48, 0.05);
            border-right: 1px solid rgba(44, 85, 48, 0.05);
            border-bottom: 1px solid rgba(44, 85, 48, 0.05);
        }
        
        .mind-access-ebooks-feature-card:hover {
            transform: translateX(5px);
            background-color: #f8f7f4;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
        }
        
        .mind-access-ebooks-feature-heading {
            font-family: 'Lora', serif;
            font-size: 1.4rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        
        .mind-access-ebooks-feature-icon {
            color: #2c5530;
            font-size: 1.3rem;
            width: 1.8rem;
            text-align: center;
        }
        
        .mind-access-ebooks-feature-description {
            font-size: 1rem;
            line-height: 1.6;
            color: #444444;
            margin-bottom: 1.2rem;
        }
        
        .mind-access-ebooks-feature-details {
            display: flex;
            gap: 1.5rem;
            font-size: 0.9rem;
            color: #666666;
            flex-wrap: wrap;
        }
        
        .mind-access-ebooks-feature-detail {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        
        .mind-access-ebooks-feature-detail i {
            font-size: 0.85rem;
            color: #2c5530;
        }
        
        /* Format Badges */
        .mind-access-ebooks-formats {
            margin-top: 2.5rem;
            padding-top: 2.5rem;
            border-top: 1px solid rgba(44, 85, 48, 0.1);
        }
        
        .mind-access-ebooks-formats-heading {
            font-family: 'Lora', serif;
            font-size: 1.2rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 1.2rem;
        }
        
        .mind-access-ebooks-format-badges {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .mind-access-ebooks-format-badge {
            padding: 0.5rem 1.2rem;
            background-color: rgba(44, 85, 48, 0.08);
            color: #2c5530;
            font-size: 0.9rem;
            font-weight: 500;
            border-radius: 50px;
            border: 1px solid rgba(44, 85, 48, 0.15);
        }
        
        /* Responsive Design */
        @media (max-width: 1100px) {
            .mind-access-ebooks-layout {
                gap: 3rem;
            }
            
            .mind-access-ebooks-heading {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 900px) {
            .mind-access-ebooks-layout {
                flex-direction: column;
            }
            
            .mind-access-ebooks-content {
                order: 1;
            }
            
            .mind-access-ebooks-features {
                order: 2;
                width: 100%;
            }
            
            .mind-access-ebooks-cta {
                width: 100%;
                justify-content: center;
            }
        }
        
        @media (max-width: 600px) {
            .mind-access-ebooks-container {
                padding: 0 1.5rem;
            }
            
            .mind-access-ebooks-heading {
                font-size: 2.2rem;
            }
            
            .mind-access-ebooks-subtitle {
                font-size: 1.2rem;
            }
            
            .mind-access-ebooks-description {
                font-size: 1rem;
            }
            
            .mind-access-ebooks-feature-card {
                padding: 1.8rem;
            }
            
            .mind-access-ebooks-feature-details {
                flex-direction: column;
                gap: 0.8rem;
            }
        }
        
        @media (max-width: 480px) {
            .mind-access-ebooks-feature-card {
                padding: 1.5rem;
            }
            
            .mind-access-ebooks-feature-heading {
                font-size: 1.3rem;
            }
            
            .mind-access-ebooks-format-badges {
                gap: 0.8rem;
            }
            
            .mind-access-ebooks-format-badge {
                padding: 0.4rem 1rem;
                font-size: 0.85rem;
            }
        }

        /* Newsletter Signup Section */
        .mind-access-newsletter-section {
            padding: 5rem 0;
            background-color: #faf9f7;
            font-family: 'Inter', sans-serif;
            border-top: 1px solid rgba(44, 85, 48, 0.1);
            border-bottom: 1px solid rgba(44, 85, 48, 0.1);
        }
        
        .mind-access-newsletter-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        /* Main Layout */
        .mind-access-newsletter-content {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Typography */
        .mind-access-newsletter-heading {
            font-family: 'Lora', serif;
            font-size: 2.5rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 1.2rem;
            line-height: 1.2;
        }
        
        .mind-access-newsletter-subtitle {
            font-size: 1.15rem;
            line-height: 1.6;
            color: #444444;
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Form Styling */
        .mind-access-newsletter-form {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 3rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(44, 85, 48, 0.08);
            margin-bottom: 2.5rem;
        }
        
        .mind-access-form-group {
            margin-bottom: 1.8rem;
            text-align: left;
        }
        
        .mind-access-form-row {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1.8rem;
        }
        
        .mind-access-form-column {
            flex: 1;
        }
        
        .mind-access-form-label {
            display: block;
            font-size: 0.95rem;
            font-weight: 500;
            color: #1a1a1a;
            margin-bottom: 0.6rem;
        }
        
        .mind-access-form-input {
            width: 100%;
            padding: 1rem 1.2rem;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            color: #333333;
            background-color: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        
        .mind-access-form-input:focus {
            outline: none;
            border-color: #2c5530;
            box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
        }
        
        .mind-access-form-input::placeholder {
            color: #999999;
            font-weight: 300;
        }
        
        /* Checkbox Styling */
        .mind-access-form-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
            margin-bottom: 1.5rem;
        }
        
        .mind-access-checkbox-input {
            margin-top: 0.25rem;
            accent-color: #2c5530;
            width: 1.1rem;
            height: 1.1rem;
        }
        
        .mind-access-checkbox-label {
            font-size: 0.9rem;
            line-height: 1.5;
            color: #555555;
        }
        
        .mind-access-checkbox-label a {
            color: #2c5530;
            text-decoration: underline;
            transition: color 0.2s ease;
        }
        
        .mind-access-checkbox-label a:hover {
            color: #1e3a23;
        }
        
        /* Submit Button */
        .mind-access-newsletter-submit {
            width: 100%;
            padding: 1.1rem;
            background-color: #2c5530;
            color: #ffffff;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 1.05rem;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
        }
        
        .mind-access-newsletter-submit:hover {
            background-color: #1e3a23;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(44, 85, 48, 0.15);
        }
        
        .mind-access-newsletter-submit i {
            font-size: 1.1rem;
        }
        
        /* Benefits Section */
        .mind-access-newsletter-benefits {
            margin-top: 3rem;
        }
        
        .mind-access-benefits-heading {
            font-family: 'Lora', serif;
            font-size: 1.3rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        
        .mind-access-benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .mind-access-benefit-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 1.5rem;
            background-color: rgba(44, 85, 48, 0.03);
            border-radius: 8px;
            border: 1px solid rgba(44, 85, 48, 0.05);
        }
        
        .mind-access-benefit-icon {
            font-size: 1.8rem;
            color: #2c5530;
            margin-bottom: 1rem;
        }
        
        .mind-access-benefit-text {
            font-size: 0.95rem;
            line-height: 1.5;
            color: #444444;
        }
        
        /* Success Message */
        .mind-access-success-message {
            display: none;
            background-color: rgba(44, 85, 48, 0.08);
            border: 1px solid rgba(44, 85, 48, 0.15);
            border-radius: 8px;
            padding: 2rem;
            text-align: center;
            margin-top: 2rem;
        }
        
        .mind-access-success-icon {
            font-size: 2.5rem;
            color: #2c5530;
            margin-bottom: 1rem;
        }
        
        .mind-access-success-text {
            font-size: 1.1rem;
            color: #1a1a1a;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }
        
        .mind-access-success-subtext {
            font-size: 0.95rem;
            color: #555555;
            max-width: 500px;
            margin: 0 auto;
        }
        
        /* Responsive Design */
        @media (max-width: 900px) {
            .mind-access-benefits-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .mind-access-newsletter-heading {
                font-size: 2.2rem;
            }
            
            .mind-access-newsletter-form {
                padding: 2.5rem 2rem;
            }
            
            .mind-access-form-row {
                flex-direction: column;
                gap: 1rem;
            }
        }
        
        @media (max-width: 600px) {
            .mind-access-newsletter-container {
                padding: 0 1.5rem;
            }
            
            .mind-access-newsletter-heading {
                font-size: 2rem;
            }
            
            .mind-access-newsletter-subtitle {
                font-size: 1.05rem;
            }
            
            .mind-access-newsletter-form {
                padding: 2rem 1.5rem;
            }
            
            .mind-access-benefits-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
                max-width: 400px;
            }
            
            .mind-access-benefit-item {
                padding: 1.2rem;
            }
        }
        
        @media (max-width: 480px) {
            .mind-access-newsletter-form {
                padding: 1.8rem 1.2rem;
            }
            
            .mind-access-form-input {
                padding: 0.9rem 1rem;
            }
        }

        /* Subscriber Gate */
        .subscriber-gate {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 3rem;
            text-align: center;
            margin: 3rem auto;
            max-width: 600px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(44, 85, 48, 0.1);
        }

        .subscriber-gate-icon {
            font-size: 3rem;
            color: #2c5530;
            margin-bottom: 1.5rem;
        }

        .subscriber-gate-title {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .subscriber-gate-text {
            color: #666666;
            margin-bottom: 2rem;
        }

        .subscriber-gate-content {
            background-color: rgba(0, 0, 0, 0.02);
            padding: 2rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            position: relative;
        }

        .blurred {
            filter: blur(6px);
            user-select: none;
        }

        /* Feedback Form */
        .feedback-section {
            max-width: 600px;
            margin: 5rem auto;
            background-color: #ffffff;
            border-radius: 12px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .feedback-title {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .feedback-form .form-group {
            margin-bottom: 1.8rem;
        }

        .feedback-form label {
            display: block;
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: #444444;
        }

        .feedback-form textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 120px;
            transition: border-color 0.3s ease;
        }

        .feedback-form textarea:focus {
            outline: none;
            border-color: #2c5530;
        }

        .feedback-actions {
            display: flex;
            justify-content: center;
        }

        /* Footer */
        .footer {
            background-color: #1a1a1a;
            color: #cccccc;
            padding: 4rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-logo {
            font-family: 'Lora', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .footer-logo span {
            color: #4caf50;
        }

        .footer-description {
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .footer-heading {
            font-size: 1.1rem;
            color: #ffffff;
            margin-bottom: 1.5rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #ffffff;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333333;
            font-size: 0.9rem;
            color: #888888;
        }

        /* Utility Classes */
        .text-center {
            text-align: center;
        }

        .mb-1 {
            margin-bottom: 1rem;
        }

        .mb-2 {
            margin-bottom: 2rem;
        }

        .mb-3 {
            margin-bottom: 3rem;
        }

        .mt-1 {
            margin-top: 1rem;
        }

        .mt-2 {
            margin-top: 2rem;
        }

        .mt-3 {
            margin-top: 3rem;
        }

        .hidden {
            display: none !important;
        }

        /* Back Button */
        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #2c5530;
            font-weight: 500;
            margin-bottom: 2rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .back-btn:hover {
            color: #1e3a23;
        }

        /* Mobile Responsiveness */
        @media (max-width: 992px) {
            .hero {
                padding-top: 8rem;
            }
            
            .hero-title {
                font-size: 2.8rem;
            }
            
            .hero-image {
                position: relative;
                width: 100%;
                height: 400px;
                border-radius: 20px;
                margin-top: 3rem;
            }
            
            .nav-links {
                display: none;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .hero-actions {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .article-header-title {
                font-size: 2.2rem;
            }
            
            .subscription-section {
                padding: 3rem 2rem;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 3rem 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .container {
                padding: 0 1.5rem;
            }
            
            .featured-cards {
                grid-template-columns: 1fr;
            }
            
            .filter-bar {
                padding: 1rem;
            }
            
            .article-header {
                height: 300px;
            }
            
            .article-header-overlay {
                padding: 2rem;
            }
            
            .article-content {
                font-size: 1rem;
            }
            
            .feedback-section {
                padding: 2rem 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .library-grid {
                grid-template-columns: 1fr;
            }
            
            .article-header-title {
                font-size: 1.8rem;
            }
            
            .subscription-benefits {
                grid-template-columns: 1fr;
            }
        }