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

        html {
            -webkit-font-smoothing: antialiased;
        }

        body {
            font-family: 'Lora', serif;
            background: #fff;
            color: #252525;
            font-size: 16px;
            line-height: 1.7;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            color: #252525;
            font-weight: 700;
            line-height: 1.4em;
            margin-bottom: 24px;
        }

        h1 {
            font-size: 48px;
            line-height: 1.2em;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-align: center;
            margin: 54px 0 36px 0;
        }

        h2 {
            font-size: 36px;
            line-height: 1.2em;
            margin-top: 36px;
        }

        h3 {
            font-size: 24px;
            margin-top: 32px;
            position: relative;
            display: inline-block;
        }

        h3:before {
            content: "";
            width: 100%;
            height: 1px;
            background: #252525;
            bottom: 0;
            left: 0;
            position: absolute;
        }

        h3:after {
            content: "";
            width: 100%;
            height: 3px;
            background: #252525;
            bottom: -5px;
            left: 0;
            position: absolute;
        }

        h4 {
            font-size: 20px;
        }

        p {
            margin-bottom: 24px;
        }

        a {
            color: #BC8D4B;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        a:hover {
            color: #252525;
        }

        .container {
            max-width: 1170px;
            margin: 0 auto;
            padding: 0 15px;
        }

        header {
            background: #252525;
            padding: 24px 0;
            position: relative;
        }

        nav ul {
            list-style: none;
            text-align: center;
            margin: 0;
            padding: 0;
        }

        nav ul li {
            display: inline-block;
            margin: 0 20px;
        }

        nav ul li a {
            color: #fff;
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            padding: 10px 0;
            display: block;
        }

        nav ul li a:hover {
            color: #BC8D4B;
        }

        article {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 15px 54px 15px;
        }

        article p:first-of-type:first-letter {
            display: block;
            float: left;
            font-size: 42px;
            font-weight: 700;
            line-height: 1.1;
            padding: 0 8px 0 0;
            margin-bottom: -8px;
        }

        .transition-section {
            background: #f4f4f4;
            padding: 54px 0;
            margin: 54px 0;
        }

        .transition-section .container {
            max-width: 900px;
        }

        .links-section {
            background: #fff;
            padding: 54px 0 72px 0;
        }

        .links-section h3 {
            margin-bottom: 24px;
        }

        .links-section ul {
            list-style: none;
            margin: 0 0 42px 0;
            padding: 0;
            column-count: 2;
            column-gap: 40px;
        }

        .links-section ul li {
            margin-bottom: 12px;
            break-inside: avoid;
            padding-left: 20px;
            position: relative;
        }

        .links-section ul li:before {
            content: "→";
            position: absolute;
            left: 0;
            color: #BC8D4B;
        }

        .links-section ul li a {
            color: #252525;
            font-size: 15px;
            line-height: 1.6;
            display: inline;
            border-bottom: 1px solid transparent;
        }

        .links-section ul li a:hover {
            color: #BC8D4B;
            border-bottom: 1px solid #BC8D4B;
        }

        footer {
            background: #252525;
            color: #fff;
            padding: 42px 0 24px 0;
            text-align: center;
        }

        footer p {
            font-family: 'Poppins', sans-serif;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0;
            color: #999;
        }

        blockquote {
            font-size: 24px;
            line-height: 1.6em;
            text-align: center;
            font-style: italic;
            font-weight: 700;
            color: #252525;
            position: relative;
            border: none;
            margin: 42px 0;
            padding: 0 32px;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 36px;
                margin: 36px 0 24px 0;
            }

            h2 {
                font-size: 28px;
                margin-top: 24px;
            }

            h3 {
                font-size: 20px;
            }

            nav ul li {
                display: block;
                margin: 8px 0;
            }

            nav ul li a {
                padding: 8px 0;
            }

            .links-section ul {
                column-count: 1;
            }

            article p:first-of-type:first-letter {
                font-size: 32px;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 28px;
            }

            h2 {
                font-size: 24px;
            }

            body {
                font-size: 15px;
            }

            blockquote {
                font-size: 20px;
                padding: 0 16px;
            }
        }
    