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

        body {
            font-family: 'Ubuntu', 'PTSansRegular', Arial, Helvetica, sans-serif;
            font-size: 13px;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
        }

        .header-wrapper {
            background-color: #682839;
            border-bottom: 1px solid #e5e5e5;
        }

        .header-social {
            background-color: #682839;
            padding: 10px 0;
            color: #fff;
            text-align: center;
            font-size: 12px;
        }

        header {
            background-color: #fff;
            padding: 20px 0;
            border-bottom: 1px solid #d2d3d4;
        }

        .container {
            max-width: 940px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo {
            text-align: center;
            margin-bottom: 20px;
        }

        .logo h2 {
            font-family: 'Ubuntu', Arial, sans-serif;
            font-size: 32px;
            font-weight: bold;
            color: #682839;
        }

        main {
            background-color: #fff;
            padding: 55px 20px 45px;
            min-height: 400px;
        }

        h1 {
            font-family: 'Ubuntu', Arial, sans-serif;
            font-size: 32px;
            line-height: 1.5;
            color: #333;
            margin-bottom: 25px;
            font-weight: normal;
        }

        article {
            margin-bottom: 40px;
        }

        article h2 {
            font-family: 'Ubuntu', Arial, sans-serif;
            font-size: 18px;
            line-height: 1.5;
            color: #333;
            margin: 25px 0 20px;
            font-weight: normal;
        }

        article h3 {
            font-family: 'Ubuntu', Arial, sans-serif;
            font-size: 16px;
            line-height: 1.5;
            color: #333;
            margin: 20px 0 15px;
            font-weight: normal;
        }

        article p {
            margin-bottom: 20px;
            color: #333;
        }

        article a {
            color: #682839;
            text-decoration: none;
            border-bottom: 1px dotted #682839;
        }

        article a:hover {
            color: #682839;
            border-bottom: 1px solid #682839;
        }

        .transition-section {
            margin: 40px 0;
            padding: 30px;
            background-color: #f6f6f6;
            border-left: 3px solid #682839;
        }

        .transition-section p {
            color: #333;
            margin-bottom: 15px;
        }

        .links-section {
            margin: 50px 0;
            padding: 40px 30px;
            background-color: #f6f6f6;
            border-top: 1px solid #e0dede;
            border-bottom: 1px solid #e0dede;
        }

        .links-section h3 {
            font-family: 'Ubuntu', Arial, sans-serif;
            font-size: 18px;
            color: #333;
            margin-bottom: 15px;
            font-weight: normal;
        }

        .links-section ul {
            list-style: none;
            margin: 0 0 30px 0;
            padding: 0;
            column-count: 2;
            column-gap: 30px;
        }

        .links-section li {
            margin-bottom: 12px;
            break-inside: avoid;
        }

        .links-section li a {
            color: #333;
            text-decoration: none;
            display: block;
            padding: 8px 0;
            border-bottom: 1px solid #e0dede;
            transition: color 0.3s ease;
        }

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

        footer {
            background-color: #363839;
            color: #8c8989;
            padding: 43px 20px 40px;
            border-top: 12px solid #e9eaee;
        }

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

        .footer-bottom {
            background-color: #282a2b;
            padding: 18px 20px 12px;
            text-align: center;
            color: #8c8989;
            font-size: 12px;
            border-top: 1px solid #4b4c4d;
        }

        @media only screen and (max-width: 768px) {
            h1 {
                font-size: 24px;
            }

            article h2 {
                font-size: 16px;
            }

            article h3 {
                font-size: 14px;
            }

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

            main {
                padding: 30px 15px;
            }

            .transition-section {
                padding: 20px;
            }

            .links-section {
                padding: 30px 20px;
            }
        }

        @media only screen and (max-width: 480px) {
            body {
                font-size: 12px;
            }

            h1 {
                font-size: 20px;
            }

            .logo h2 {
                font-size: 24px;
            }
        }
    