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

        html {
            font-size: 100%;
            -ms-text-size-adjust: none;
            -webkit-text-size-adjust: none;
        }

        body {
            font-family: "Open Sans", Helvetica, Arial, sans-serif;
            font-size: 14px;
            line-height: 1.6;
            color: #2a2a2a;
            background: #f7f7f7;
            word-wrap: break-word;
        }

        .mh-container {
            width: 100%;
            max-width: 1080px;
            margin: 0 auto;
            position: relative;
        }

        .mh-header {
            background: #fff;
            padding: 20px 25px;
            margin-bottom: 25px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .mh-header-title {
            font-size: 2rem;
            line-height: 1.3;
            font-weight: 700;
            color: #000;
            text-align: center;
            text-transform: uppercase;
        }

        .mh-wrapper {
            padding: 25px;
            background: #fff;
            margin-bottom: 25px;
            box-shadow: 0 0 10px rgba(50, 50, 50, 0.17);
        }

        h1 {
            font-size: 2rem;
            font-weight: 700;
            color: #000;
            line-height: 1.3;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #e64946;
        }

        article h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #000;
            line-height: 1.3;
            margin-top: 20px;
            margin-bottom: 15px;
        }

        article h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #000;
            line-height: 1.3;
            margin-top: 18px;
            margin-bottom: 12px;
        }

        article h4 {
            font-size: 1.125rem;
            font-weight: 700;
            color: #000;
            line-height: 1.3;
            margin-top: 16px;
            margin-bottom: 10px;
        }

        article p {
            margin-bottom: 20px;
            font-size: 15px;
            line-height: 1.6;
        }

        article ul,
        article ol {
            margin: 0 0 20px 40px;
        }

        article ul {
            list-style: square;
        }

        article ol {
            list-style: decimal;
        }

        article li {
            margin-bottom: 5px;
        }

        article a {
            color: #e64946;
            font-weight: 600;
            text-decoration: none;
        }

        article a:hover {
            text-decoration: underline;
        }

        .mh-transition-section {
            margin-top: 30px;
            margin-bottom: 30px;
            padding: 20px 0;
        }

        .mh-transition-section p {
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .mh-links-section {
            background: #f5f5f5;
            padding: 30px 25px;
            margin-top: 30px;
            border-top: 3px solid #e64946;
        }

        .mh-links-section h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 15px;
            margin-top: 25px;
        }

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

        .mh-links-section ul {
            list-style: none;
            margin: 0 0 20px 0;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px 20px;
        }

        .mh-links-section li {
            margin: 0;
            padding: 0;
        }

        .mh-links-section a {
            color: #2a2a2a;
            text-decoration: none;
            display: block;
            padding: 8px 10px;
            background: #fff;
            border-left: 3px solid #e64946;
            transition: all 0.25s ease-out;
        }

        .mh-links-section a:hover {
            color: #e64946;
            background: #fff;
            padding-left: 15px;
        }

        .mh-footer {
            background: #2a2a2a;
            color: #fff;
            padding: 20px 25px;
            text-align: center;
            font-size: 0.8125rem;
        }

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

            .mh-wrapper {
                padding: 20px;
            }

            .mh-header {
                padding: 15px 20px;
            }

            .mh-header-title {
                font-size: 1.5rem;
            }

            h1 {
                font-size: 1.5rem;
            }

            article h2 {
                font-size: 1.25rem;
            }

            article h3 {
                font-size: 1.125rem;
            }

            article h4 {
                font-size: 1rem;
            }

            .mh-links-section {
                padding: 20px 15px;
            }

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

            .mh-links-section h3 {
                font-size: 1.125rem;
                margin-top: 20px;
            }

            article ul,
            article ol {
                margin: 0 0 20px 20px;
            }
        }

        @media screen and (max-width: 420px) {
            .mh-header-title {
                font-size: 1.25rem;
            }

            h1 {
                font-size: 1.25rem;
            }

            .mh-links-section a {
                font-size: 0.875rem;
                padding: 6px 8px;
            }

            .mh-links-section a:hover {
                padding-left: 12px;
            }
        }
    