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

        html {
            font-size: 10px;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
        }

        .header {
            background-color: #f0f0f0;
            padding: 1.5rem 0;
            text-align: center;
        }

        .logo {
            margin: 2em 0;
            text-align: center;
        }

        .logo-text {
            font-size: 4.5rem;
            font-weight: 300;
            color: #d99896;
            letter-spacing: 0.2rem;
        }

        .menu {
            margin-bottom: 2em;
            background-color: #f0f0f0;
        }

        .menu-items {
            text-align: center;
            font-size: 1.7rem;
            line-height: 3.4rem;
            padding: 0 2rem;
        }

        .menu-items a {
            margin: 0 1.4rem;
            text-decoration: none;
            color: #333;
            text-transform: uppercase;
            display: inline-block;
        }

        .menu-items a:hover {
            color: #d99896;
        }

        .main-wrapper {
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem;
        }

        h1 {
            font-size: 2.8rem;
            text-transform: uppercase;
            margin: 3rem 0 2rem 0;
            text-align: center;
            color: #333;
        }

        article {
            font-size: 1.5rem;
            line-height: 2.2rem;
            margin-bottom: 4rem;
        }

        article p {
            margin: 1.5rem 0;
            text-align: left;
        }

        article h2 {
            font-size: 2.2rem;
            text-transform: uppercase;
            margin: 3rem 0 1.5rem 0;
            text-align: left;
        }

        article h3 {
            font-size: 1.9rem;
            margin: 2.5rem 0 1.2rem 0;
            text-align: left;
        }

        article h4 {
            font-size: 1.7rem;
            margin: 2rem 0 1rem 0;
            text-align: left;
            font-weight: bold;
        }

        article strong,
        article b {
            font-weight: bold;
        }

        article em,
        article i {
            font-style: italic;
        }

        .transition-section {
            font-size: 1.5rem;
            line-height: 2.2rem;
            margin: 4rem 0;
            padding: 2rem 0;
            border-top: 1px solid #817e7e;
        }

        .transition-section p {
            margin: 1.5rem 0;
        }

        .links-section {
            margin: 4rem 0;
            padding: 3rem 2rem;
            background-color: #f9f9f9;
            border-radius: 4px;
        }

        .links-section h3 {
            font-size: 1.9rem;
            text-transform: uppercase;
            margin: 2rem 0 1.5rem 0;
            color: #333;
        }

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

        .links-section li {
            margin: 0.8rem 0;
            break-inside: avoid;
        }

        .links-section a {
            color: #d99896;
            text-decoration: none;
            font-size: 1.5rem;
            display: inline-block;
            transition: color 0.3s ease;
        }

        .links-section a:hover {
            color: #333;
            text-decoration: underline;
        }

        .footer {
            text-align: center;
            margin-top: 4rem;
            padding: 4rem 2rem 2rem 2rem;
            background-color: #f0f0f0;
        }

        .footer-menu {
            margin-bottom: 3rem;
        }

        .footer-menu a {
            margin: 0 1.4rem;
            text-decoration: none;
            color: #333;
            font-size: 1.5rem;
            text-transform: uppercase;
            display: inline-block;
        }

        .footer-menu a:hover {
            color: #d99896;
        }

        .footer-menu a:not(:first-child):before {
            content: "|";
            margin-right: 1.4rem;
            color: #333;
        }

        .footer-copyright {
            font-size: 1.4rem;
            color: #817e7e;
            padding-bottom: 2rem;
        }

        @media (max-width: 768px) {
            html {
                font-size: 9px;
            }

            .menu-items a {
                margin: 0 0.8rem;
                font-size: 1.5rem;
            }

            .main-wrapper {
                padding: 1.5rem;
            }

            h1 {
                font-size: 2.4rem;
            }

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

            .footer-menu a {
                margin: 0.5rem 1rem;
            }

            .footer-menu a:not(:first-child):before {
                content: "";
                margin-right: 0;
            }
        }

        @media (max-width: 480px) {
            html {
                font-size: 8px;
            }

            .logo-text {
                font-size: 3.5rem;
            }

            .menu-items {
                font-size: 1.5rem;
                line-height: 3rem;
            }

            .menu-items a {
                margin: 0 0.5rem;
                display: inline-block;
            }

            .links-section {
                padding: 2rem 1.5rem;
            }
        }
    