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

        body {
            background-color: #F2EBEF;
            font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
            font-size: 14px;
            line-height: 1.6;
            color: #666;
        }

        .wrapper {
            max-width: 1000px;
            margin: 0 auto;
            background-color: #fff;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        header {
            background: linear-gradient(to bottom, #fff 0%, #f4f4f4 100%);
            padding: 20px;
            border-bottom: 3px solid #94CE18;
        }

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

        .site-title {
            color: #154B70;
            font-size: 1.8em;
            font-weight: normal;
            margin: 0;
        }

        nav {
            background-color: #94CE18;
            padding: 0;
        }

        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        nav ul li {
            position: relative;
        }

        nav ul li a {
            display: block;
            padding: 12px 20px;
            color: #154B70;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            transition: all 0.3s;
        }

        nav ul li a:hover {
            background-color: #fff;
            color: #000;
        }

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

        h1 {
            color: #27638C;
            font-size: 2em;
            font-weight: normal;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #94CE18;
        }

        article {
            margin-bottom: 40px;
        }

        article h2 {
            color: #27638C;
            font-size: 1.5em;
            margin: 25px 0 15px;
            font-weight: normal;
        }

        article h3 {
            color: #27638C;
            font-size: 1.2em;
            margin: 20px 0 12px;
            font-weight: bold;
        }

        article h4 {
            color: #27638C;
            font-size: 1.1em;
            margin: 18px 0 10px;
            font-weight: bold;
        }

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

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

        article li {
            margin-bottom: 8px;
        }

        .transition-section {
            background-color: #F4F7E7;
            padding: 20px;
            margin: 30px 0;
            border-left: 4px solid #94CE18;
        }

        .transition-section p {
            margin-bottom: 12px;
        }

        .links-section {
            background-color: #F4F7E7;
            padding: 30px 20px;
            margin-top: 40px;
            border-radius: 8px;
        }

        .links-section h2 {
            color: #27638C;
            font-size: 1.6em;
            margin-bottom: 20px;
            text-align: center;
        }

        .links-section h3 {
            color: #154B70;
            font-size: 1.2em;
            margin: 25px 0 12px;
            font-weight: bold;
        }

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

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

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

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

        .links-section a::before {
            content: "▸ ";
            color: #94CE18;
            font-weight: bold;
            margin-right: 5px;
        }

        footer {
            background-color: #154B70;
            color: #fff;
            padding: 20px;
            text-align: center;
            font-size: 0.9em;
        }

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

        footer a:hover {
            text-decoration: underline;
        }

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

            .site-title {
                font-size: 1.4em;
                margin-bottom: 15px;
            }

            nav ul {
                flex-direction: column;
            }

            nav ul li {
                width: 100%;
            }

            nav ul li a {
                padding: 10px 15px;
            }

            h1 {
                font-size: 1.6em;
            }

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

            main {
                padding: 20px 15px;
            }
        }

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

            .site-title {
                font-size: 1.2em;
            }

            h1 {
                font-size: 1.4em;
            }

            article h2 {
                font-size: 1.3em;
            }

            article h3 {
                font-size: 1.1em;
            }
        }
    