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

        body {
            font-family: Verdana, Geneva, 'DejaVu Sans', Arial, Helvetica, sans-serif;
            font-size: 81.3%;
            line-height: 1.6;
            color: #58585a;
            background: #feffff;
        }

        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 15px;
        }

        header {
            background: #ffffff;
            border-bottom: 3px solid #da0046;
            padding: 20px 0;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .branding {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .logo-text {
            max-width: 600px;
        }

        #site-name {
            font-size: 1.8em;
            font-weight: bold;
            color: #da0046;
            margin-bottom: 5px;
            text-transform: uppercase;
        }

        #site-slogan {
            font-size: 1em;
            color: #da0046;
            line-height: 1.3;
        }

        nav {
            background-color: #ffffff;
            border-bottom: 1px solid #e9e9e9;
        }

        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            padding: 0;
            margin: 0;
        }

        nav li {
            margin: 0;
        }

        nav a {
            display: block;
            padding: 12px 20px;
            color: #da0046;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            transition: background 0.3s;
        }

        nav a:hover {
            background: #da0046;
            color: #ffffff;
        }

        main {
            padding: 30px 0;
            min-height: 400px;
        }

        h1 {
            font-size: 2em;
            color: #58585a;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e9e9e9;
        }

        article {
            background: #ffffff;
            padding: 25px;
            margin-bottom: 30px;
            border-radius: 4px;
            border: 1px solid #e9e9e9;
        }

        article h2 {
            font-size: 1.6em;
            color: #58585a;
            margin-top: 25px;
            margin-bottom: 15px;
        }

        article h3 {
            font-size: 1.4em;
            color: #58585a;
            margin-top: 20px;
            margin-bottom: 12px;
        }

        article h4 {
            font-size: 1.2em;
            color: #58585a;
            margin-top: 18px;
            margin-bottom: 10px;
        }

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

        article ul, article ol {
            margin: 15px 0 15px 30px;
        }

        article li {
            margin-bottom: 8px;
        }

        .transition-section {
            background: #f7f7f7;
            padding: 25px;
            margin-bottom: 30px;
            border-radius: 4px;
            border-left: 4px solid #da0046;
        }

        .transition-section p {
            margin-bottom: 15px;
            text-align: justify;
        }

        .links-section {
            background: #ffffff;
            padding: 30px 25px;
            border-radius: 4px;
            border: 1px solid #e9e9e9;
        }

        .links-section h2 {
            font-size: 1.8em;
            color: #da0046;
            margin-bottom: 25px;
            text-align: center;
        }

        .links-section h3 {
            font-size: 1.4em;
            color: #58585a;
            margin-top: 30px;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #e9e9e9;
        }

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

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

        .links-section li {
            margin: 0;
        }

        .links-section a {
            color: #da0046;
            text-decoration: none;
            transition: color 0.3s;
            display: inline-block;
            padding: 5px 0;
        }

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

        .links-section a::before {
            content: "→ ";
            margin-right: 5px;
        }

        footer {
            background: #ffffff;
            border-top: 3px solid #da0046;
            padding: 25px 0;
            margin-top: 50px;
            text-align: center;
            font-size: 0.92em;
        }

        footer p {
            margin: 8px 0;
            line-height: 1.5;
        }

        @media only screen and (max-width: 768px) {
            .header-inner {
                flex-direction: column;
                text-align: center;
            }

            .branding {
                flex-direction: column;
                text-align: center;
            }

            #site-name {
                font-size: 1.4em;
            }

            #site-slogan {
                font-size: 0.9em;
            }

            nav ul {
                flex-direction: column;
            }

            nav a {
                padding: 10px 15px;
            }

            h1 {
                font-size: 1.6em;
            }

            article {
                padding: 20px;
            }

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

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

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

            #site-name {
                font-size: 1.2em;
            }

            #site-slogan {
                font-size: 0.85em;
            }

            h1 {
                font-size: 1.4em;
            }

            article h2 {
                font-size: 1.3em;
            }

            article h3 {
                font-size: 1.15em;
            }

            article {
                padding: 15px;
            }

            .transition-section {
                padding: 15px;
            }

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

            .links-section h3 {
                font-size: 1.2em;
            }
        }
    