        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #2a2a2a;
            background: #fafafa;
        }
        
        /* Header and Navigation */
        header {
            background: white;
            border-bottom: 1px solid #eee;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }
        
        .logo {
            font-family: 'Crimson Text', serif;
            font-size: 2rem;
            font-weight: 400;
            color: #1a1a1a;
            text-decoration: none;
        }
        
        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #666;
            font-weight: 400;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover,
        .nav-links a.active {
            color: #c4844e;
        }
        
        /* Main Content Container */
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
        }
        
        /* Hero Section */
        .hero {
            padding: 80px 0;
            text-align: center;
            background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
            margin: 0 -30px 60px -30px;
        }
        
        .hero h1 {
            font-family: 'Crimson Text', serif;
            font-size: 3.5rem;
            font-weight: 400;
            margin-bottom: 20px;
            color: #1a1a1a;
            position: relative;
        }
        
        .hero h1::after {
            content: '';
            width: 60px;
            height: 2px;
            background: #c4844e;
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .tagline {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 10px;
            font-weight: 300;
        }
        
        .subtitle {
            font-size: 1.3rem;
            color: #444;
            font-weight: 500;
            margin-bottom: 40px;
        }
        
        .hero-description {
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
            line-height: 1.7;
            color: #555;
        }
        
        /* Section Styles */
        .section {
            margin-bottom: 80px;
        }
        
        .section h2 {
            font-family: 'Crimson Text', serif;
            font-size: 2.5rem;
            font-weight: 400;
            margin-bottom: 30px;
            color: #1a1a1a;
        }
        
        .section h3 {
            font-family: 'Crimson Text', serif;
            font-size: 1.8rem;
            font-weight: 400;
            margin-bottom: 20px;
            color: #333;
        }
        
        .section p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #555;
            margin-bottom: 20px;
        }
        
        /* Three Column Layout */
        .three-columns {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .column {
            background: white;
            padding: 40px 30px;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }
        
        .column h4 {
            font-family: 'Crimson Text', serif;
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #c4844e;
        }
        
        /* Email Signup */
        .email-signup {
            background: #2a2a2a;
            color: white;
            padding: 60px;
            border-radius: 8px;
            text-align: center;
            margin: 60px -30px;
        }
        
        .email-signup h3 {
            font-family: 'Crimson Text', serif;
            font-size: 2rem;
            margin-bottom: 20px;
        }
        
        .signup-form {
            max-width: 400px;
            margin: 30px auto 0;
            display: flex;
            gap: 10px;
        }
        
        .signup-form input {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
        }
        
        .signup-form button {
            background: #c4844e;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 4px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .signup-form button:hover {
            background: #a86d3a;
        }
        
        /* Article Styles */
        .article-header {
            max-width: 700px;
            margin: 0 auto 50px auto;
            text-align: center;
            border-bottom: 1px solid #eee;
            padding-bottom: 40px;
        }
        
        .article-title {
            font-family: 'Crimson Text', serif;
            font-size: 2.5rem;
            font-weight: 400;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #1a1a1a;
        }
        
        .article-subtitle {
            font-size: 1.2rem;
            color: #666;
            font-style: italic;
            margin-bottom: 30px;
        }
        
        .article-meta {
            font-size: 0.9rem;
            color: #888;
            letter-spacing: 0.5px;
        }
        
        .article-content {
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #444;
        }
        
        .article-content p {
            margin-bottom: 25px;
        }
        
        .pullquote {
            font-family: 'Crimson Text', serif;
            font-size: 1.5rem;
            font-style: italic;
            text-align: center;
            margin: 40px 0;
            padding: 30px;
            border-left: 3px solid #c4844e;
            background: #f9f9f9;
            color: #333;
        }
        
        /* Book Grid */
        .book-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .book-item {
            text-align: center;
        }
        
        .book-cover {
            width: 200px;
            height: 300px;
            background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
            margin: 0 auto 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 30px 20px;
            color: white;
            border-radius: 4px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .book-cover h4 {
            font-family: 'Crimson Text', serif;
            font-size: 1.3rem;
            line-height: 1.3;
        }
        
        .book-cover .author {
            font-size: 0.9rem;
            color: #c4844e;
        }
        
        .book-cover .publisher {
            font-size: 0.8rem;
            color: #888;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        /* Author Grid */
        .author-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .author-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }
        
        .author-photo {
            width: 80px;
            height: 80px;
            background: #ddd;
            border-radius: 50%;
            margin-bottom: 20px;
        }
        
        /* Review Item */
        .review-item {
            background: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            margin-bottom: 40px;
        }
        
        .review-header {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .review-cover {
            width: 120px;
            height: 180px;
            background: #ddd;
            flex-shrink: 0;
            border-radius: 4px;
        }
        
        .review-info h3 {
            margin-bottom: 10px;
        }
        
        .review-info .author {
            color: #666;
            margin-bottom: 10px;
        }
        
        .review-info .rating {
            color: #c4844e;
            font-weight: 600;
        }
        
        /* Footer */
        footer {
            background: #2a2a2a;
            color: white;
            padding: 60px 0;
            margin-top: 100px;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
            text-align: center;
        }
        
        .footer-content p {
            margin-bottom: 20px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                gap: 20px;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero,
            .email-signup {
                padding: 40px 20px;
            }
            
            .signup-form {
                flex-direction: column;
            }
            
            .review-header {
                flex-direction: column;
                text-align: center;
            }
            
        /* Center image */
        .center {
            display: block;
            margin-left: auto;
             margin-right: auto;
             width: 50%;
        }
        .aligncenter {
            text-align: center;
        }
        
        /* Page-specific styles will be added inline */
    
