
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            height: 100%;
            background-color: #d3c3b5;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.15), transparent 5%, transparent 95%, rgba(0, 0, 0, 0.15));
        }

        body {
            font-family: Georgia, Times, serif;
            font-size: 16px;
            line-height: 1.6;
            color: #7e7d7d;
            min-height: 100%;
        }

        #wrapper {
            max-width: 960px;
            margin: 0 auto;
            background: #f3efea;
            box-shadow: 0 0 35px rgba(0, 0, 0, 0.3);
        }

        header {
            padding: 20px 30px;
            text-align: center;
            border-bottom: 1px solid #d9c0c0;
        }

        header h1 {
            font-family: futura-pt-condensed, Futura, Helvetica, Arial, Geneva, sans-serif;
            font-size: 42px;
            line-height: 1.2;
            color: #b72a2a;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        nav {
            background: rgba(238, 232, 226, 0.7);
            box-shadow: inset 0 0 20px rgba(124, 124, 98, 0.15);
            padding: 0 20px;
        }

        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }

        nav li {
            margin: 0;
            padding: 0 1px 0 0;
            border-left: 1px solid #b72a2a;
        }

        nav li:first-child {
            border-left: none;
        }

        nav a {
            display: block;
            padding: 15px 18px;
            font-family: museo-slab, Courier, Georgia, serif;
            font-size: 17px;
            text-decoration: none;
            color: #b72a2a;
            text-transform: uppercase;
            transition: color 0.2s;
        }

        nav a:hover {
            color: #6058cf;
        }

        main {
            padding: 30px;
            background: #fff;
        }

        article {
            max-width: 800px;
            margin: 0 auto 40px;
        }

        article h1 {
            font-family: futura-pt-condensed, Futura, Helvetica, Arial, Geneva, sans-serif;
            font-size: 36px;
            line-height: 1.3;
            color: #b72a2a;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 25px;
        }

        article h2 {
            font-family: futura-pt-condensed, Futura, Helvetica, Arial, Geneva, sans-serif;
            font-size: 28px;
            line-height: 1.4;
            color: #b72a2a;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 30px 0 20px;
        }

        article h3 {
            font-family: futura-pt-condensed, Futura, Helvetica, Arial, Geneva, sans-serif;
            font-size: 22px;
            line-height: 1.4;
            color: #b72a2a;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 25px 0 15px;
        }

        article h4 {
            font-family: futura-pt-condensed, Futura, Helvetica, Arial, Geneva, sans-serif;
            font-size: 18px;
            color: #646464;
            margin: 20px 0 12px;
        }

        article p {
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.7;
        }

        article ul,
        article ol {
            margin: 0 0 20px 30px;
        }

        article li {
            margin-bottom: 8px;
        }

        article a {
            color: #6058cf;
            text-decoration: none;
            transition: color 0.2s;
        }

        article a:hover {
            color: #b72a2a;
        }

        article blockquote {
            padding: 15px 0 0 26px;
            margin: 20px 0;
            border-left: 3px solid #d9c0c0;
            font-style: italic;
            color: #646464;
        }

        article strong {
            font-weight: 700;
            color: #4b4a4a;
        }

        article em {
            font-style: italic;
        }

        .transition-section {
            max-width: 800px;
            margin: 0 auto 40px;
            padding-top: 30px;
            border-top: 1px solid #ebd6bc;
        }

        .transition-section p {
            font-size: 18px;
            line-height: 1.8;
            font-style: italic;
            color: #646464;
            margin-bottom: 20px;
        }

        .links-section {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 30px;
            background: #f3efea;
            border-top: 1px solid #ebd6bc;
        }

        .links-section h3 {
            font-family: museo-slab, Courier, Georgia, serif;
            font-size: 20px;
            line-height: 1.4;
            color: #815a27;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
            margin-top: 25px;
        }

        .links-section h3:first-of-type {
            margin-top: 0;
        }

        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px 30px;
            margin-bottom: 30px;
        }

        .links-section li {
            margin: 0;
        }

        .links-section a {
            color: #6058cf;
            text-decoration: none;
            font-size: 16px;
            line-height: 1.6;
            transition: color 0.2s;
            display: inline-block;
        }

        .links-section a:hover {
            color: #b72a2a;
        }

        .links-section a::before {
            content: "→ ";
            color: #739ca1;
            margin-right: 5px;
        }

        footer {
            clear: both;
            padding: 30px 40px;
            font-size: 15px;
            line-height: 1.5;
            color: #ecd3d3;
            background: #271613;
            box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
            text-align: center;
        }

        footer p {
            margin: 10px 0;
            font-size: 14px;
        }

        footer a {
            color: #9993e0;
            text-decoration: none;
            transition: color 0.2s;
        }

        footer a:hover {
            color: #fff;
        }

        @media (max-width: 768px) {
            header h1 {
                font-size: 32px;
            }

            nav ul {
                flex-direction: column;
            }

            nav li {
                width: 100%;
                border-left: none;
                border-top: 1px solid #b72a2a;
            }

            nav li:first-child {
                border-top: none;
            }

            nav a {
                padding: 12px 15px;
                font-size: 16px;
            }

            main {
                padding: 20px;
            }

            article h1 {
                font-size: 28px;
            }

            article h2 {
                font-size: 24px;
            }

            article h3 {
                font-size: 20px;
            }

            .links-section {
                padding: 30px 20px;
            }

            .links-section ul {
                grid-template-columns: 1fr;
                gap: 8px;
            }

            footer {
                padding: 25px 20px;
            }
        }

        @media (max-width: 480px) {
            header h1 {
                font-size: 26px;
                letter-spacing: 1px;
            }

            nav a {
                font-size: 15px;
                padding: 10px 12px;
            }

            article h1 {
                font-size: 24px;
            }

            article h2 {
                font-size: 21px;
            }

            article h3 {
                font-size: 18px;
            }

            article p,
            .links-section a {
                font-size: 15px;
            }

            .transition-section p {
                font-size: 16px;
            }
        }
    