@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=EB+Garamond:wght@400;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #0a0a0a;
            --accent: #ff6b35;
            --light: #f7f7f7;
            --gray: #666;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--primary);
            background: white;
            overflow-x: hidden;
        }
        
        .top-nav {
            padding: 20px;
            text-align: center;
            font-size: 0.95rem;
        }
        
        .top-nav a {
            color: var(--gray);
            text-decoration: none;
            padding: 5px 10px;
            transition: color 0.3s ease;
        }
        
        .top-nav a:hover,
        .top-nav a.active {
            color: var(--primary);
        }
        
        .nav-divider {
            color: var(--gray);
            opacity: 0.5;
            margin: 0 5px;
        }
        
        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 60px 20px;
        }
        
        header {
            margin-bottom: 80px;
            position: relative;
        }
        
        .name {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: -0.02em;
        }
        
        .tagline {
            font-size: 1.25rem;
            color: var(--gray);
            font-weight: 300;
        }
        
        .accent-bar {
            position: absolute;
            left: -40px;
            top: 0;
            width: 4px;
            height: 100%;
            background: var(--accent);
        }
        
        .contact {
            margin: 40px 0;
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .contact a {
            color: var(--primary);
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: border-color 0.3s ease;
        }
        
        .contact a:hover {
            border-bottom-color: var(--accent);
        }
        
        .bio-trigger {
            position: fixed;
            right: 30px;
            top: 50%;
            transform: translateY(-50%) rotate(-90deg);
            transform-origin: right center;
            background: var(--primary);
            color: white;
            padding: 10px 20px;
            border: none;
            font-size: 0.9rem;
            letter-spacing: 0.1em;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 100;
            font-family: inherit;
        }
        
        .bio-trigger:hover {
            background: var(--accent);
            padding-right: 25px;
        }
        
        .bio-panel {
            position: fixed;
            right: -500px;
            top: 0;
            width: 500px;
            height: 100vh;
            background: var(--light);
            padding: 60px 40px;
            overflow-y: auto;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
            z-index: 200;
        }
        
        .bio-panel.active {
            right: 0;
        }
        
        .bio-panel h2 {
            font-size: 2rem;
            margin-bottom: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .close-bio {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--gray);
            transition: color 0.3s ease;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .close-bio:hover {
            color: var(--primary);
        }
        
        .bio-panel p {
            margin-bottom: 1.2rem;
            color: #333;
            line-height: 1.8;
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 150;
        }
        
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        section {
            margin-bottom: 60px;
        }
        
        h2 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            font-weight: 600;
            color: var(--primary);
        }
        
        .expertise {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .expertise-item {
            padding: 20px;
            background: var(--light);
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        
        .expertise-item:hover {
            transform: translateY(-2px);
        }
        
        .expertise-item h3 {
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: var(--accent);
        }
        
        .journey {
            position: relative;
            padding-left: 30px;
        }
        
        .journey::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            bottom: 10px;
            width: 2px;
            background: var(--light);
        }
        
        .journey-item {
            position: relative;
            margin-bottom: 30px;
        }
        
        .journey-item::before {
            content: '';
            position: absolute;
            left: -31px;
            top: 8px;
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
        }
        
        .journey-item h3 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        
        .journey-item .date {
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        
        @media (max-width: 768px) {
            .bio-panel {
                width: 100%;
                right: -100%;
            }
            
            .bio-trigger {
                right: 20px;
                transform: translateY(-50%);
                writing-mode: horizontal-tb;
            }
        }
        
        .writing-list {
            margin: 40px 0;
        }
        
        .writing-item {
            padding: 30px;
            background: var(--light);
            border-radius: 8px;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }
        
        .writing-item:hover {
            transform: translateY(-2px);
        }
        
        .writing-item h2 {
            color: var(--accent);
            margin-bottom: 10px;
        }
        
        .writing-item .date {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        /* Learning Section Styles */
        .learning-list {
            margin: 40px 0;
        }

        .learning-item {
            padding: 30px;
            background: var(--light);
            border-radius: 8px;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }

        .learning-item:hover {
            transform: translateY(-2px);
        }

        .learning-item h2 {
            color: var(--accent);
            margin-bottom: 10px;
        }

        .learning-item .date {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .email-link {
            color: var(--primary);
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: border-color 0.3s ease;
        }
        
        .email-link:hover {
            border-bottom-color: var(--accent);
        }
        
        main.container {
            padding-top: 20px;
        }
        
        footer {
            text-align: center;
            padding: 40px 20px;
            color: var(--gray);
            font-size: 0.9rem;
            border-top: 1px solid var(--light);
            margin-top: 60px;
        }
        
        /* FAQ Styles */
        .faq-container {
            margin-top: 50px;
        }

        .faq-hint {
            background: linear-gradient(135deg, rgba(247, 247, 247, 0.8), rgba(247, 247, 247, 0.4));
            border-left: 3px solid var(--accent);
            padding: 15px 20px;
            margin-bottom: 40px;
            border-radius: 4px;
            font-size: 0.95rem;
            color: #555;
            font-style: italic;
        }

        .faq-hint p {
            margin: 0;
            line-height: 1.6;
        }
        
        .faq-item {
            margin-bottom: 40px;
            border: none;
            border-bottom: 1px solid #e5e5e5;
            padding-bottom: 35px;
            transition: all 0.3s ease;
        }
        
        .faq-item:last-child {
            border-bottom: none;
        }
        
        .faq-item[open] {
            background-color: rgba(247, 247, 247, 0.5);
            margin-left: -20px;
            margin-right: -20px;
            padding-left: 20px;
            padding-right: 20px;
            border-radius: 8px;
        }
        
        .faq-item summary {
            padding: 20px 0;
            cursor: pointer;
            display: flex;
            align-items: flex-start;
            gap: 20px;
            font-weight: 700;
            font-style: italic;
            font-size: 1.1rem;
            line-height: 1.6;
            color: var(--primary);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .faq-item summary:hover {
            color: var(--accent);
        }
        
        .faq-item summary::marker,
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        
        .faq-icon {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            background: var(--accent);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'EB Garamond', serif;
            font-weight: 700;
            font-size: 2.2rem;
            font-style: normal;
            transition: all 0.3s ease;
            margin-top: -5px;
        }
        
        .faq-item[open] .faq-icon {
            background: var(--primary);
            transform: rotate(10deg);
        }
        
        .faq-question {
            flex: 1;
            padding-right: 35px;
        }
        
        .faq-item summary::after {
            content: '▼';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%) rotate(-90deg);
            color: #999;
            transition: transform 0.3s ease;
            font-size: 0.7rem;
        }
        
        .faq-item[open] summary::after {
            transform: translateY(-50%) rotate(0deg);
        }
        
        .faq-answer {
            padding: 10px 0 30px 100px;
            animation: fadeIn 0.3s ease;
        }

        .faq-short-answer {
            color: #333;
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .faq-short-answer p {
            margin-bottom: 0;
        }

        .faq-full-answer-wrapper {
            margin-top: 15px;
        }

        .faq-full-answer-wrapper summary {
            display: inline-block;
            padding: 8px 16px;
            background: var(--light);
            border: 1px solid #ddd;
            border-radius: 4px;
            cursor: pointer;
            font-size: 0.95rem;
            color: var(--primary);
            transition: all 0.2s ease;
            user-select: none;
            font-weight: 500;
        }

        .faq-full-answer-wrapper summary:hover {
            background: #f0f0f0;
            border-color: var(--accent);
            color: var(--accent);
        }

        .faq-full-answer-wrapper[open] summary {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            margin-bottom: 15px;
        }

        .faq-full-answer-wrapper summary::marker,
        .faq-full-answer-wrapper summary::-webkit-details-marker {
            display: none;
        }

        .faq-full-answer {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            padding-top: 10px;
        }

        .faq-full-answer p {
            margin-bottom: 1.4rem;
        }

        .faq-full-answer p:last-child {
            margin-bottom: 0;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .faq-container {
                margin-top: 30px;
            }
            
            .faq-item {
                margin-bottom: 30px;
                padding-bottom: 25px;
            }
            
            .faq-item[open] {
                margin-left: -10px;
                margin-right: -10px;
                padding-left: 10px;
                padding-right: 10px;
            }
            
            .faq-item summary {
                padding: 15px 0;
                font-size: 1rem;
                gap: 15px;
            }
            
            .faq-icon {
                width: 38px;
                height: 38px;
                font-size: 1.8rem;
                margin-top: -3px;
            }
            
            .faq-answer {
                padding: 10px 0 20px 20px;
            }

            .faq-short-answer {
                font-size: 0.98rem;
            }

            .faq-full-answer-wrapper summary {
                font-size: 0.9rem;
                padding: 6px 12px;
            }

            .faq-full-answer {
                font-size: 0.9rem;
            }
            
            .faq-question {
                padding-right: 25px;
            }
            
            .faq-item summary::after {
                font-size: 0.6rem;
            }
            
            .faq-answer p {
                margin-bottom: 1.2rem;
            }
        }
        
        @media (max-width: 600px) {
            .container {
                padding: 40px 20px;
            }
            
            .accent-bar {
                left: -20px;
            }
        }
        
        /* ============================================
           PRINT STYLES - Professional & Beautiful Output
           ============================================ */
        @media print {
            /* Reset & Base Typography */
            * {
                background: transparent !important;
                color: black !important;
                box-shadow: none !important;
                text-shadow: none !important;
            }

            body {
                font-family: 'EB Garamond', Georgia, serif;
                font-size: 11pt;
                line-height: 1.5;
                color: black;
                background: white;
                margin: 0;
                padding: 0;
            }

            /* Page Setup */
            @page {
                margin: 1in 0.75in 1in 1.25in;
                size: letter;
            }

            @page :first {
                margin-top: 0.5in;
            }

            /* Typography Hierarchy */
            h1 {
                font-size: 24pt;
                margin-bottom: 12pt;
                page-break-after: avoid;
                font-weight: bold;
            }

            h2 {
                font-size: 18pt;
                margin-top: 18pt;
                margin-bottom: 6pt;
                page-break-after: avoid;
                font-weight: bold;
            }

            h3 {
                font-size: 14pt;
                margin-top: 12pt;
                margin-bottom: 6pt;
                page-break-after: avoid;
                font-weight: bold;
            }

            p {
                margin-bottom: 10pt;
                orphans: 3;
                widows: 3;
                page-break-inside: avoid;
            }

            /* Hide Interactive Elements */
            .bio-trigger,
            .top-nav,
            .overlay,
            .bio-panel,
            .accent-bar,
            .nav-divider {
                display: none !important;
            }

            /* Container & Layout */
            .container,
            main.container {
                max-width: 100%;
                margin: 0;
                padding: 0;
            }

            /* Links - Show URLs */
            a[href]:after {
                content: " (" attr(href) ")";
                font-size: 9pt;
                font-weight: normal;
                color: #666;
            }

            a[href^="#"]:after,
            a[href^="javascript:"]:after {
                content: "";
            }

            /* Header Enhancement */
            header {
                border-bottom: 2pt solid black;
                padding-bottom: 12pt;
                margin-bottom: 18pt;
            }

            .name {
                font-size: 28pt;
                font-weight: bold;
                margin-bottom: 6pt;
            }

            .tagline {
                font-size: 12pt;
                font-style: italic;
                color: #333;
            }

            /* Expertise Items */
            .expertise-item {
                border: 1pt solid #999;
                padding: 8pt;
                margin-bottom: 8pt;
                page-break-inside: avoid;
            }

            .expertise-item h3 {
                font-size: 12pt;
                font-weight: bold;
                margin-bottom: 4pt;
            }

            /* Journey Timeline */
            .journey {
                padding-left: 12pt;
            }

            .journey::before {
                display: none;
            }

            .journey-item {
                margin-bottom: 12pt;
                page-break-inside: avoid;
            }

            .journey-item::before {
                content: "• ";
                font-weight: bold;
                margin-left: -12pt;
            }

            .journey-item .date {
                font-style: italic;
            }

            /* FAQ Specific - Auto-expand everything */
            .faq-container {
                margin-top: 24pt;
            }

            .faq-hint {
                display: none !important;
            }

            /* Force all details elements to show their content */
            details > *:not(summary) {
                display: block !important;
                visibility: visible !important;
                opacity: 1 !important;
                position: static !important;
                height: auto !important;
                width: auto !important;
                overflow: visible !important;
                clip: auto !important;
                clip-path: none !important;
                transform: none !important;
            }

            .faq-item {
                border: 1pt solid #ccc;
                padding: 12pt;
                margin-bottom: 12pt;
                page-break-inside: avoid;
                display: block !important;
            }

            /* Force FAQ content to be visible regardless of open state */
            .faq-item > *:not(summary),
            .faq-answer,
            .faq-short-answer,
            .faq-full-answer-wrapper,
            .faq-full-answer-wrapper > *:not(summary),
            .faq-full-answer {
                display: block !important;
                visibility: visible !important;
                opacity: 1 !important;
                position: static !important;
                height: auto !important;
                width: auto !important;
                overflow: visible !important;
            }

            .faq-item summary {
                display: block !important;
                font-weight: bold;
                font-size: 11pt;
                margin-bottom: 8pt;
                font-style: normal;
                page-break-after: avoid;
            }

            .faq-item summary::after {
                display: none !important;
            }

            .faq-icon {
                display: inline !important;
                background: none !important;
                color: black !important;
                font-weight: bold;
                font-size: 14pt;
                width: auto !important;
                height: auto !important;
                margin: 0 8pt 0 0 !important;
                transform: none !important;
            }

            .faq-question {
                display: inline !important;
                padding: 0 !important;
            }

            /* Show all FAQ content with proper styling */
            .faq-answer {
                display: block !important;
                padding: 8pt 0 0 24pt !important;
                animation: none !important;
            }

            .faq-short-answer {
                display: block !important;
                margin-bottom: 8pt !important;
                font-style: italic;
                border-left: 2pt solid #666;
                padding-left: 8pt;
            }

            .faq-full-answer-wrapper {
                display: block !important;
            }

            .faq-full-answer-wrapper summary {
                display: none !important;
            }

            .faq-full-answer {
                display: block !important;
                margin-top: 8pt;
                padding-top: 8pt;
                border-top: 1pt dotted #999;
            }

            /* Article/Writing Styles */
            article {
                max-width: 100%;
                padding: 0;
            }

            article header {
                page-break-after: avoid;
            }

            article h1 {
                font-size: 20pt;
                margin-bottom: 8pt;
            }

            .article-meta {
                font-size: 10pt;
                margin-bottom: 12pt;
                font-style: italic;
            }

            article .lead {
                font-size: 12pt;
                margin-bottom: 12pt;
                padding-bottom: 8pt;
                border-bottom: 1pt solid #999;
            }

            article blockquote {
                margin: 12pt 0;
                padding: 8pt 0 8pt 12pt;
                border-left: 3pt solid #666;
                font-style: italic;
                page-break-inside: avoid;
            }

            /* Writing List */
            .writing-item {
                border: 1pt solid #999;
                padding: 8pt;
                margin-bottom: 8pt;
                page-break-inside: avoid;
            }

            .writing-item h2 {
                font-size: 14pt;
                margin-bottom: 4pt;
            }

            .writing-item .date {
                font-size: 9pt;
                font-style: italic;
            }

            /* Footer */
            footer {
                display: none;
            }

            /* Page Break Control */
            h1, h2, h3, h4, h5, h6 {
                page-break-after: avoid;
                page-break-inside: avoid;
            }

            p, li, blockquote {
                page-break-inside: avoid;
            }

            img {
                max-width: 100% !important;
                page-break-inside: avoid;
            }

            /* Print-Only Footer */
            body::after {
                content: "Richard Amerman - inlookingout.com - Page " counter(page);
                position: fixed;
                bottom: 0;
                right: 0;
                font-size: 9pt;
                color: #666;
                font-style: italic;
            }
        }

