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

        body {
            background-color: #fff;
            color: #595959;
            font-family: Arial, Helvetica, sans-serif;
            font-size: 14px;
            line-height: 1.6;
            padding: 0;
        }

        #wrapper {
            max-width: 1024px;
            margin: 0 auto;
            padding: 30px 35px 35px;
        }

        header {
            padding-bottom: 30px;
            border-bottom: 1px solid #a5acb0;
            margin-bottom: 30px;
        }

        #logo {
            display: inline-block;
            margin-bottom: 30px;
        }

        #logo img {
            max-width: 300px;
            height: auto;
        }

        nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px 20px;
            font-size: 14px;
            text-transform: lowercase;
        }

        nav ul li {
            position: relative;
        }

        nav ul li a {
            color: #a5acb0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        nav ul ul {
            display: flex;
            flex-wrap: wrap;
            gap: 5px 15px;
            margin-top: 8px;
            font-size: 12px;
        }

        nav ul ul li:before {
            content: "/ ";
            color: #a5acb0;
        }

        h1 {
            font-size: 28px;
            font-weight: 100;
            color: #595959;
            margin-bottom: 30px;
            line-height: 1.3;
        }

        article {
            margin-bottom: 40px;
        }

        article h2 {
            font-size: 20px;
            font-weight: 100;
            color: #595959;
            margin: 30px 0 15px;
        }

        article h3 {
            font-size: 16px;
            font-weight: 100;
            color: #595959;
            margin: 25px 0 12px;
        }

        article p {
            margin-bottom: 18px;
            color: #595959;
            line-height: 1.8;
        }

        article a {
            color: #a5acb0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        article a:hover {
            color: #595959;
        }

        article em {
            font-style: italic;
        }

        article strong {
            font-weight: bold;
        }

        .transition-section {
            margin: 40px 0;
            padding: 25px 0;
            border-top: 1px solid #e5e5e5;
        }

        .transition-section p {
            color: #595959;
            line-height: 1.8;
            margin-bottom: 18px;
        }

        .links-section {
            margin: 40px 0;
            padding: 30px 0;
            border-top: 1px solid #a5acb0;
        }

        .links-section h3 {
            font-size: 16px;
            font-weight: 100;
            color: #595959;
            margin-bottom: 15px;
            margin-top: 25px;
        }

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

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

        .links-section ul li a {
            color: #a5acb0;
            text-decoration: none;
            font-size: 13px;
            transition: color 0.3s ease;
            display: inline-block;
        }

        .links-section ul li a:hover {
            color: #595959;
        }

        footer {
            border-top: 1px solid #a5acb0;
            padding-top: 12px;
            margin-top: 40px;
            font-size: 10px;
            display: flex;
            justify-content: space-between;
            color: #a5acb0;
        }

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

        footer a:hover {
            color: #595959;
        }

        @media screen and (max-width: 768px) {
            body {
                font-size: 13px;
            }

            #wrapper {
                padding: 20px 20px 25px;
            }

            header {
                padding-bottom: 20px;
                margin-bottom: 20px;
            }

            #logo {
                margin-bottom: 20px;
            }

            #logo img {
                max-width: 220px;
            }

            nav ul {
                flex-direction: column;
                gap: 12px;
            }

            nav ul ul {
                margin-top: 5px;
                gap: 5px 10px;
            }

            h1 {
                font-size: 22px;
                margin-bottom: 20px;
            }

            article h2 {
                font-size: 18px;
                margin: 25px 0 12px;
            }

            article h3 {
                font-size: 15px;
                margin: 20px 0 10px;
            }

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

            footer {
                flex-direction: column;
                gap: 8px;
                font-size: 9px;
            }
        }

        @media screen and (max-width: 480px) {
            #wrapper {
                padding: 15px 15px 20px;
            }

            h1 {
                font-size: 20px;
            }

            article h2 {
                font-size: 16px;
            }

            nav ul {
                font-size: 13px;
            }

            nav ul ul {
                font-size: 11px;
            }
        }
    