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

        body {
            font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #5b5a58;
            background-color: #ffffff;
        }

        header {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #e8e8e8;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.75rem;
            font-weight: 900;
            color: #5b5a58;
            text-decoration: none;
            letter-spacing: 1px;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: #5b5a58;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        nav a:hover {
            color: #000;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #5b5a58;
        }

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 2rem;
        }

        h1 {
            font-size: 2.5rem;
            font-weight: 900;
            color: #5b5a58;
            margin-bottom: 2rem;
            line-height: 1.2;
            letter-spacing: 0.5px;
        }

        article {
            background-color: #ffffff;
            padding: 2rem 0;
            margin-bottom: 3rem;
        }

        article h2 {
            font-size: 1.875rem;
            font-weight: 700;
            color: #5b5a58;
            margin-top: 2rem;
            margin-bottom: 1rem;
            letter-spacing: 0.3px;
        }

        article h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #5b5a58;
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
        }

        article h4 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #5b5a58;
            margin-top: 1.25rem;
            margin-bottom: 0.5rem;
        }

        article p {
            margin-bottom: 1.25rem;
            font-size: 1.0625rem;
            line-height: 1.75;
            color: #5b5a58;
        }

        article ul, article ol {
            margin-bottom: 1.25rem;
            padding-left: 2rem;
        }

        article li {
            margin-bottom: 0.5rem;
            line-height: 1.75;
        }

        .transition-section {
            background: linear-gradient(135deg, #f8f8f8 0%, #ececec 100%);
            padding: 3rem 2rem;
            margin: 3rem -2rem;
            border-left: 4px solid #5b5a58;
        }

        .transition-section p {
            font-size: 1.0625rem;
            line-height: 1.75;
            color: #5b5a58;
            margin-bottom: 1rem;
        }

        .links-section {
            background-color: #f9f9f9;
            padding: 3rem 2rem;
            margin: 3rem -2rem 0;
            border-top: 3px solid #5b5a58;
        }

        .links-section h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #5b5a58;
            margin-bottom: 1.5rem;
            letter-spacing: 0.3px;
        }

        .links-section ul {
            list-style: none;
            column-count: 2;
            column-gap: 3rem;
            padding: 0;
        }

        .links-section li {
            margin-bottom: 0.75rem;
            break-inside: avoid;
        }

        .links-section a {
            color: #5b5a58;
            text-decoration: none;
            font-size: 1rem;
            line-height: 1.6;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
            padding-left: 1.25rem;
        }

        .links-section a:before {
            content: '→';
            position: absolute;
            left: 0;
            opacity: 0.5;
            transition: all 0.3s ease;
        }

        .links-section a:hover {
            color: #000;
            padding-left: 1.5rem;
        }

        .links-section a:hover:before {
            opacity: 1;
        }

        footer {
            background-color: #5b5a58;
            color: #ffffff;
            padding: 2rem;
            margin-top: 4rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-container p {
            font-size: 0.9375rem;
            opacity: 0.9;
        }

        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }

            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: #ffffff;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            }

            nav.active {
                display: block;
            }

            nav ul {
                flex-direction: column;
                gap: 0;
                padding: 1rem 0;
            }

            nav li {
                width: 100%;
                text-align: center;
                padding: 0.75rem 0;
                border-bottom: 1px solid #f0f0f0;
            }

            h1 {
                font-size: 2rem;
            }

            article h2 {
                font-size: 1.5rem;
            }

            article h3 {
                font-size: 1.25rem;
            }

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

            main {
                padding: 2rem 1.5rem;
            }

            .transition-section,
            .links-section {
                margin-left: -1.5rem;
                margin-right: -1.5rem;
                padding: 2rem 1.5rem;
            }
        }

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

            .header-container {
                padding: 1rem 1.5rem;
            }

            article p,
            .transition-section p {
                font-size: 1rem;
            }
        }
    