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

        body {
            font-family: Helvetica, Arial, sans-serif;
            font-size: 14px;
            line-height: 22px;
            color: #4D4D4D;
            background-color: #FCEC9A;
            background-image: linear-gradient(to bottom, #FBE268 0%, #FCEC9A 400px);
        }

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

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

        .container {
            max-width: 980px;
            margin: 0 auto;
            background-color: #FFF;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        }

        header {
            background-color: #FFF;
            padding: 20px;
            border-bottom: 3px solid #D50000;
        }

        h1 {
            font-family: 'Arial', sans-serif;
            font-size: 32px;
            font-weight: bold;
            color: #B90012;
            margin-bottom: 10px;
            line-height: 1.3;
        }

        article {
            padding: 30px 20px;
            background-color: #FFF;
        }

        article h2 {
            font-family: 'Arial', sans-serif;
            font-size: 24px;
            font-weight: bold;
            color: #B90012;
            margin-top: 25px;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        article h3 {
            font-family: 'Arial', sans-serif;
            font-size: 20px;
            font-weight: bold;
            color: #B90012;
            margin-top: 20px;
            margin-bottom: 10px;
        }

        article h4 {
            font-family: 'Arial', sans-serif;
            font-size: 16px;
            font-weight: bold;
            color: #B90012;
            margin-top: 15px;
            margin-bottom: 8px;
        }

        article p {
            margin-bottom: 15px;
            text-align: left;
        }

        article ul, article ol {
            margin-left: 25px;
            margin-bottom: 15px;
        }

        article li {
            margin-bottom: 8px;
        }

        .transition-section {
            padding: 25px 20px;
            background-color: #FFF;
            border-top: 1px solid #FDF6CC;
        }

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

        .links-section {
            padding: 30px 20px;
            background-color: #FFF;
            border-top: 2px solid #FDF6CC;
        }

        .links-section h3 {
            font-family: 'Arial', sans-serif;
            font-size: 20px;
            font-weight: bold;
            color: #B90012;
            margin-top: 20px;
            margin-bottom: 12px;
        }

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

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

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

        .links-section a {
            color: #B90012;
            font-size: 14px;
            display: inline-block;
            padding: 3px 0;
        }

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

        footer {
            background-color: #FBE268;
            padding: 20px;
            text-align: center;
            font-size: 12px;
            color: #666;
            margin-top: 10px;
        }

        footer a {
            color: #D6191C;
            font-size: 12px;
        }

        footer a:hover {
            color: #D36969;
        }

        @media (max-width: 768px) {
            .container {
                margin: 0;
            }

            h1 {
                font-size: 26px;
            }

            article {
                padding: 20px 15px;
            }

            article h2 {
                font-size: 20px;
            }

            article h3 {
                font-size: 18px;
            }

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

            .transition-section {
                padding: 20px 15px;
            }

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

        @media (max-width: 480px) {
            body {
                font-size: 13px;
                line-height: 20px;
            }

            h1 {
                font-size: 22px;
            }

            article h2 {
                font-size: 18px;
            }

            article h3 {
                font-size: 16px;
            }

            .links-section h3 {
                font-size: 18px;
            }
        }
    