        iframe#netlify-identity-widget {
            top: 60px !important;
        }
        :root { --accent: #2563eb; --bg: #f8fafc; --text: #1e293b; }
        body { font-family: -apple-system, sans-serif; background: var(--bg); color: var(--text); margin: 0; }
        
        /* Nav Navigation Bar Container */
        .nav { position: fixed; top: 0; width: 100%; height: 64px; background: white; border-bottom: 1px solid #e2e8f0; display: flex; align-items: center; padding: 0 24px; z-index: 100; box-sizing: border-box; justify-content: space-between; }
        
        /* Application Views/Pages */
        .page { display: none; padding: 100px 24px; max-width: 800px; margin: 0 auto; }
        .page.active { display: block; }
        
        .card { background: white; border: 1px solid #e2e8f0; padding: 20px; border-radius: 12px; cursor: pointer; margin-bottom: 16px; transition: 0.2s; }
        .card:hover { border-color: var(--accent); transform: translateY(-2px); }
        
        /* Book Reader Layout Styles */
        .reader-view { background: white; padding: 0px; border-radius: 12px; border: 1px solid #e2e8f0; font-family: 'Georgia', serif; font-size: 1.25rem; line-height: 1.8; min-height: 300px; max-width: 100%; display: block; }
        
        .btn { padding: 10px 20px; border-radius: 8px; border: none; cursor: pointer; font-weight: 600; transition: 0.2s; }
        .btn-primary { background: var(--accent); color: white; width: 100%; }
        .btn-logout { background: #fee2e2; color: #dc2626; margin-left: 8px; }
        
        button:disabled { opacity: 0.5; cursor: not-allowed; }

        /* Responsive Page Elements Layouts */
        .reader-view.feature-page { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }

        .parent {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-auto-rows: 1fr;
            gap: 8px;
        }

        .twelve-column {
            grid-column: span 3 / span 12;
        }

        .eleven-column {
            grid-column: span 11 / span 11;
        }

        .ten-column {
            grid-column: span 10 / span 10;
        }

        .nine-column {
            grid-column: span 9 / span 9;
        }

        .two-column {
            grid-column: span 6 / span 6;
        }

        .three-column {
            grid-column: span 4 / span 4;
        }

        .four-column {
            grid-column: span 3 / span 3;
        }

        .four-column {
            grid-column: span 3 / span 3;
        }

        .div2 {
            grid-row-start: 2;
        }

        .div3 {
            grid-row-start: 2;
        }


        .div5 {
            grid-row-start: 3;
        }

        .div6 {
            grid-column: span 2 / span 2;
        }

        .div7 {
            grid-column: span 2 / span 2;
            grid-row-start: 5;
        }

        .agenda {
            padding: 50px;
        }

        .flex-horizontal {
            display: flex;
            flex-direction: row;
            align-items: center;
        }

        .flex-vertical {
            display: flex;
            flex-direction: column;
        }

        .agenda-header {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            background-color: #000000;
            color: #ffffff;
            padding: 50px;
            align-items: center;
        }

        .table-of-contents {
            padding: 5px 50px;
        }

        .toc-item {
            justify-content: space-between;
            border-bottom: 1px solid #e2e8f0;
        }

        .single-column-layout {  
            display: flex;
            flex-direction: column;
            padding: 50px;
        }

        .single-column-layout-no-padding {  
            display: flex;
            flex-direction: column;
        }

            .logo { grid-area: logo; padding: 50px;}

            .title { grid-area: title; padding: 50px; }

            .title h1 { margin: 0; font-weight: 900; font-size: clamp(1rem, 4vw + 1rem, 6rem);}
            .cover-art { grid-area: cover-art; margin-top: 10px; position: relative; height: 600px; }

            .cover-banner {
                display: flex;
                align-items: center;
                justify-content: center;
                background-color: #f1f1f1;
                width: 100%;
                color: white;

            }

            #banner1 {
                clip-path: polygon(0 0, 100% 73%, 100% 100%, 0 26%);
                height: 600px;
                z-index: 2;
                position: absolute;
                background-color: #7dba9b;
                color: #000000;

            }
            #banner1 > * {
                transform: rotate(30deg);
            }

            #banner1 > p {
                position: relative;
                top: -90px;
                right: 50px;
                width: 130px;

            }

             #banner1 > h2 {
                position: relative;
                top: 95px;
                right: -120px;

            }

            #banner1 > img {
                position: relative;
                top: 170px;
                right: -160px;
            }

            #banner2 {
                clip-path: polygon(0 80%, 100% 0, 100% 21%, 0 100%);
                height: 600px;
                z-index: 3;
                position: absolute;
                background-color: #7b50e2;
            }

            #banner2 > * {
                transform: rotate(328deg);
            }

            #banner2 > p {
                position: relative;
                top: 95px;
                right: 50px;
                width: 130px;

            }

             #banner2 > h2 {
                position: relative;
                top: -16px;

            }

            #banner2 > img {
                position: relative;
                top: -125px;
                right: -60px;
            }

            #banner3 {
                clip-path: polygon(0 39%, 100% 37%, 100% 56%, 0 58%);
                height: 600px;
                position: absolute;
                z-index: 1;
                background-color: #000;
            }

            #banner3 > * {
                transform: rotate(358deg);
            }

            #banner3 > p {
                position: relative;
                top: -20px;
                right: -300px;
                width: 130px;
            }

             #banner3 > h2 {
                position: relative;
                top: -36px;
            }

            #banner3 > img {
                position: relative;
                top: -10px;
                right: 320px;
            }

         @media (max-width: 500px) {
            .agenda-header {
                padding: 10px;
            }

        .single-column-layout {  
            padding: 10px;
        }

            .agenda {
                padding: 10px;
            }

        .table-of-contents {
            padding: 5px 10px;
        }
        .flex-horizontal {
            display: flex;
            flex-direction: column;
            align-items: start;
        }
        }


        @media (min-width: 768px) {
            .reader-view.feature-page { grid-template-columns: 1fr; }
            .reader-view.feature-page h1 { grid-column: 1; text-align: center; }
        }

        .reader-view img { max-width: 100%; height: auto; border-radius: 12px; display: block; }

        .hero {
            background-image: url("/images/company-overview-hero-image.png");
            background-size: cover;
            background-position: center;
            padding: 50px;
            text-align: center;
            color: white;
        }

        h1, h2 {
            font-family: "Glock Grotesque", sans-serif;
            font-weight: 900;
            line-height: 1.6;
        }

        h3, h4, h5, h6 {
            font-family: "Roboto", sans-serif;
            font-weight: 400;
            line-height: 1.3;
        }

        p {
            font-family: "Roboto", sans-serif;
            font-weight: 300;
            line-height: 1.6;
            font-size: 1rem;
        }

        .subheading {
            font-family: "Roboto", sans-serif;
            font-weight: 400;
            line-height: 1.3;
            font-size: clamp(1rem, 3vw + 1rem, 2.5rem);
        }

        .company-overview-mission {
            border-bottom: 1px solid #c4c4c4;
            padding-bottom: 10px;
        }

        

