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

        html {
            height: 100%;
        }

        body {
            min-height: 100%;
            background: #dee3e0;
            font: normal 16px/1.6 Arial, Helvetica, sans-serif;
            color: #666;
        }

        a {
            color: #c23e31;
            text-decoration: none;
        }

        a:hover {
            color: #900;
        }

        h1 {
            color: #c23e31;
            font: bold 32px/1.3 Arial, Helvetica, sans-serif;
            margin-bottom: 24px;
        }

        h2 {
            color: #c23e31;
            font: bold 24px/1.4 Arial, Helvetica, sans-serif;
            margin: 32px 0 16px 0;
        }

        h3 {
            color: #c23e31;
            font: bold 18px/1.4 Arial, Helvetica, sans-serif;
            margin: 24px 0 12px 0;
        }

        #header {
            width: 100%;
            background-color: #fae6c3;
            border-bottom: 9px solid #dee3e0;
            padding: 20px 0;
        }

        #headerwrap {
            max-width: 990px;
            margin: 0 auto;
            padding: 0 20px;
        }

        #main {
            width: 100%;
            background: #fad799;
            padding: 40px 0;
            min-height: 400px;
        }

        #mainwrap {
            max-width: 990px;
            margin: 0 auto;
            padding: 0 20px;
            background: #fff;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        }

        #content {
            padding: 40px;
            background: #fff;
        }

        article {
            margin-bottom: 40px;
        }

        article p {
            margin-bottom: 20px;
            line-height: 1.7;
        }

        article h2 {
            margin-top: 40px;
            margin-bottom: 20px;
        }

        article h3 {
            margin-top: 30px;
            margin-bottom: 15px;
        }

        #transition {
            padding: 30px 40px;
            background: #f9f4ed;
            border-top: 3px solid #fae6c3;
            border-bottom: 3px solid #fae6c3;
            margin: 0 0 40px 0;
        }

        #transition p {
            margin-bottom: 15px;
            line-height: 1.7;
        }

        #transition p:last-child {
            margin-bottom: 0;
        }

        #links-section {
            padding: 40px;
            background: #fff;
        }

        #links-section h3 {
            color: #c23e31;
            font-size: 20px;
            margin-top: 30px;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #fae6c3;
        }

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

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

        #links-section li {
            padding-left: 20px;
            position: relative;
        }

        #links-section li:before {
            content: "•";
            color: #c23e31;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        #links-section a {
            color: #c23e31;
            text-decoration: none;
            transition: color 0.2s;
        }

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

        #footer {
            max-width: 990px;
            margin: 0 auto;
            padding: 20px;
            color: #666;
            font-size: 14px;
            line-height: 1.5;
            text-align: center;
        }

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

        #footer a:hover {
            color: #222;
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 28px;
            }

            h2 {
                font-size: 22px;
            }

            h3 {
                font-size: 18px;
            }

            #content {
                padding: 30px 20px;
            }

            #transition {
                padding: 20px;
            }

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

            #links-section ul {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            #main {
                padding: 20px 0;
            }
        }

        @media (max-width: 480px) {
            body {
                font-size: 15px;
            }

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

            h2 {
                font-size: 20px;
                margin: 24px 0 12px 0;
            }

            h3 {
                font-size: 17px;
            }

            #content {
                padding: 20px 15px;
            }

            #transition {
                padding: 15px;
            }

            #links-section {
                padding: 20px 15px;
            }
        }
    