 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            font-weight: 400;
            color: #333;
            background-color: #f8f8f8;
            overflow-x: hidden;
        }

        /* Navigation Bar */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 2rem;
            background-color: #1a1a1a;
            color: #fff;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: #FDBC38;
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 1.5rem;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 400;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #FDBC38;
        }

        /* Hero Section */
        .hero {
            background-color: #850808;
            padding: 3rem 2rem;
            color: #fff;
        }

        .hero h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4rem;
            font-weight: 300;
            color: #FDBC38;
            margin-bottom: 1rem;
            text-align: center;
        }

        /* Document Content */
        .document-content {
            max-width: 900px;
            margin: 2rem auto;
            padding: 0 2rem;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.1rem;
            line-height: 1.6;
            color: #333;
        }

        .document-content h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-weight: 700;
            color: #1a1a1a;
            margin: 1.5rem 0;
            text-align: left;
        }

        .document-content h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            font-weight: 700;
            color: #850808;
            margin: 1.5rem 0 0.5rem;
            text-align: left;
        }

        .document-content h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.4rem;
            font-weight: 700;
            color: #333;
            margin: 1rem 0 0.5rem;
            text-align: center;
        }

        .document-content h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: #333;
            margin: 0.8rem 0;
            text-align: left;
        }

        .document-content p {
            margin: 0.8rem 0;
            text-align: left;
        }

        .document-content blockquote {
            margin: 1.5rem 0;
            padding: 1rem 1.5rem;
            font-style: italic;
            color: #555;
            border-left: 4px solid #850808;
            background-color: #f0f0f0;
        }

        .document-content ul, .document-content ol {
            margin: 0.8rem 0;
            padding-left: 1.5rem;
        }

        .document-content li {
            margin: 0.5rem 0;
        }

        .document-content .sub-list {
            padding-left: 1.5rem;
        }

        .meta {
            font-size: 0.9rem;
            color: #555;
            margin-bottom: 2rem;
            text-align: left;
        }

        .toc {
            margin: 2rem 0;
        }

        .toc ul {
            list-style-type: none;
            padding-left: 0;
        }

        .toc ul > li {
            margin: 0.5rem 0;
            font-size: 1.1rem;
            color: #333;
        }

        .toc ul > li::before {
            content: counter(item) ".";
            counter-increment: item;
            color: #FDBC38;
            font-weight: 700;
            margin-right: 0.5rem;
        }

        .toc ul {
            counter-reset: item;
        }

        .toc ul ul {
            padding-left: 1.5rem;
            margin-top: 0.3rem;
        }

        .toc ul ul li {
            font-size: 1rem;
            color: #555;
            font-style: italic;
        }

        .toc ul ul li::before {
            content: "";
            color: #FDBC38;
            margin-right: 0.5rem;
        }

        .references {
            margin-top: 2rem;
        }

        .references li {
            font-size: 0.9rem;
            margin: 0.5rem 0;
            word-wrap: break-word;
            overflow-wrap: break-word;
            word-break: break-all;
        }

        .references a {
            color: #850808;
            text-decoration: none;
            word-wrap: break-word;
            overflow-wrap: break-word;
            display: inline-block;
            max-width: 100%;
        }

        .references a:hover {
            text-decoration: underline;
        }

        /* Iframe and Fullscreen Button */
        iframe#pdf {
            width: 100%;
            height: 80vh;
            display: block;
            border: none;
            margin: 2rem auto;
            max-width: 900px;
        }

        .fullscreen-btn {
            display: inline-block;
            margin: 1rem 0;
            padding: 0.8rem 1.5rem;
            background-color: #FDBC38;
            color: #1a1a1a;
            font-weight: 700;
            border-radius: 5px;
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
            transition: background-color 0.3s ease;
            text-align: center;
        }

        .fullscreen-btn:hover {
            background-color: #e0a800;
        }

        /* Footer */
        .footerr {
            background-color: #1a1a1a;
            padding: 1rem;
            text-align: center;
            color: #fff;
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .document-content {
                padding: 0 1rem;
            }

            .document-content h1 {
                font-size: 1.6rem;
            }

            .document-content h2 {
                font-size: 1.4rem;
            }

            .document-content h3 {
                font-size: 1.2rem;
            }

            iframe#pdf {
                height: 70vh;
            }

            .nav-links {
                flex-direction: column;
                gap: 0.5rem;
            }
        }