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

        body {
            font-family: 'Roboto Condensed', sans-serif;
            line-height: 1.6;
            color: #242424;
            background-color: #fff;
        }

        header {
            background-color: #292b2c;
            padding: 1.5em 0;
            text-align: center;
        }

        .wrap {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 15px;
        }

        nav {
            margin-top: 1em;
        }

        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5em;
        }

        nav a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.2s;
        }

        nav a:hover {
            color: #b68f4a;
        }

        main {
            padding: 3em 0;
        }

        h1 {
            font-size: 2.5rem;
            color: #292b2c;
            margin-bottom: 1.5em;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding-bottom: 0.5em;
        }

        h1:before {
            content: '';
            display: block;
            width: 100px;
            height: 5px;
            background-color: #b68f4a;
            margin-bottom: 0.5em;
        }

        article {
            margin-bottom: 3em;
        }

        article h2 {
            font-size: 1.8rem;
            color: #292b2c;
            margin: 1.5em 0 0.8em;
            font-weight: 400;
        }

        article h3 {
            font-size: 1.5rem;
            color: #292b2c;
            margin: 1.2em 0 0.6em;
            font-weight: 400;
        }

        article p {
            margin-bottom: 1.5em;
            font-size: 1rem;
        }

        .transition-section {
            margin: 3em 0;
            padding: 2em 0;
        }

        .transition-section p {
            margin-bottom: 1.5em;
        }

        .links-section {
            background-color: #f5f5f5;
            padding: 3em 0;
            margin-top: 3em;
        }

        .links-section h3 {
            font-size: 1.2rem;
            color: #292b2c;
            margin-bottom: 1em;
            font-weight: 400;
            text-transform: uppercase;
        }

        .links-section ul {
            list-style: none;
            column-count: 2;
            column-gap: 2em;
            margin-bottom: 2em;
        }

        .links-section li {
            margin-bottom: 0.5em;
            break-inside: avoid;
        }

        .links-section a {
            color: #b68f4a;
            text-decoration: none;
            transition: color 0.2s;
            font-size: 0.95rem;
        }

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

        footer {
            background-color: #323536;
            color: #999;
            padding: 3em 0;
            margin-top: 3em;
            text-align: center;
        }

        footer a {
            color: #fff;
            text-decoration: none;
        }

        footer a:hover {
            color: #b68f4a;
        }

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

            article h2 {
                font-size: 1.5rem;
            }

            article h3 {
                font-size: 1.3rem;
            }

            nav ul {
                flex-direction: column;
                gap: 0.8em;
            }

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

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

            article h2 {
                font-size: 1.3rem;
            }

            main {
                padding: 2em 0;
            }

            .links-section {
                padding: 2em 0;
            }
        }
    