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

        body {
            font-family: Verdana, Geneva, sans-serif;
            background-color: #eceeed;
            color: #3B3B3C;
            line-height: 1.6;
            font-size: 14px;
        }

        .container {
            max-width: 1024px;
            margin: 0 auto;
            padding: 20px;
            background-color: #fff;
        }

        header {
            background-color: #000;
            padding: 15px 0;
            margin-bottom: 30px;
        }

        header .header-content {
            max-width: 1024px;
            margin: 0 auto;
            padding: 0 20px;
        }

        h1 {
            font-size: 26px;
            color: #000;
            margin-bottom: 25px;
            font-weight: bold;
            padding-bottom: 10px;
            border-bottom: 3px solid #e4136f;
        }

        h2 {
            font-size: 18px;
            color: #e4136f;
            margin: 25px 0 15px;
            font-weight: bold;
        }

        h3 {
            font-size: 14px;
            color: #e4136f;
            margin: 20px 0 12px;
            font-weight: bold;
        }

        article {
            margin-bottom: 40px;
            text-align: justify;
        }

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

        article h2 {
            margin-top: 30px;
        }

        article h3 {
            margin-top: 20px;
        }

        .transition-section {
            background-color: #d9dadc;
            padding: 25px;
            margin: 30px 0;
            border-radius: 5px;
        }

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

        .links-section {
            background-color: #f9f9f9;
            padding: 30px 25px;
            margin-top: 40px;
            border-top: 3px solid #e4136f;
        }

        .links-section h3 {
            color: #000;
            font-size: 16px;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #d9dadc;
        }

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

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

        .links-section ul li a {
            color: #00aeef;
            text-decoration: none;
            font-size: 12px;
            display: inline-block;
            padding: 3px 0;
            transition: color 0.3s ease;
        }

        .links-section ul li a:hover {
            color: #e4136f;
            text-decoration: underline;
        }

        footer {
            background-color: #58585a;
            color: #fff;
            padding: 40px 20px 20px;
            margin-top: 50px;
            text-align: center;
            font-size: 11px;
        }

        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }

            h1 {
                font-size: 22px;
            }

            h2 {
                font-size: 16px;
            }

            h3 {
                font-size: 13px;
            }

            article p {
                font-size: 12px;
            }

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

            .transition-section {
                padding: 20px;
            }

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

        @media (max-width: 480px) {
            h1 {
                font-size: 20px;
            }

            h2 {
                font-size: 15px;
            }

            article p {
                font-size: 11px;
            }

            .links-section ul li a {
                font-size: 11px;
            }
        }
    