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

        html {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            -ms-text-size-adjust: 100%;
            -webkit-text-size-adjust: 100%;
        }

        body {
            margin: 0;
            font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
            font-weight: 400;
            font-size: 16px;
            line-height: 1.6;
            color: #2c4766;
            background: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
        }

        a {
            color: #2c4766;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: #a7c43e;
            text-decoration: none;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
        }

        h1 {
            color: #294361;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 0 rgba(167, 196, 62, 0.1);
        }

        h2 {
            color: #294361;
            font-size: 2rem;
            margin-bottom: 1.2rem;
        }

        h3 {
            color: #a7c43e;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        p {
            margin-bottom: 1rem;
        }

        .header {
            background: linear-gradient(135deg, #294361 0%, #2c4766 50%, #294361 100%);
            color: #fff;
            padding: 2rem 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }

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

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .logo span {
            color: #a7c43e;
        }

        .slogan {
            color: #fff;
            font-size: 1.1rem;
            text-align: right;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
        }

        .info-banner {
            background-color: #a7c43e;
            color: #fff;
            text-align: center;
            padding: 1.5rem 0;
            font-size: 1.2rem;
            font-weight: 600;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .main-content {
            background-color: #fff;
            margin: 2rem auto;
            padding: 3rem 2rem;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            border-radius: 4px;
        }

        article {
            margin-bottom: 2.5rem;
        }

        article p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }

        .transition-section {
            background-color: #f9f9f9;
            padding: 2rem;
            margin: 2rem 0;
            border-left: 4px solid #a7c43e;
            border-radius: 4px;
        }

        .links-section {
            background-color: #fff;
            padding: 2.5rem 2rem;
            margin-top: 2rem;
            border-top: 3px solid #a7c43e;
        }

        .links-section h3 {
            margin-top: 2rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e8e8e8;
        }

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

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

        .links-section li {
            position: relative;
            padding-left: 1.2rem;
        }

        .links-section li:before {
            content: "▸";
            position: absolute;
            left: 0;
            color: #a7c43e;
            font-weight: 700;
        }

        .links-section a {
            color: #2c4766;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .links-section a:hover {
            color: #a7c43e;
            transform: translateX(4px);
        }

        .footer {
            background: linear-gradient(135deg, #294361 0%, #2c4766 100%);
            color: #fff;
            padding: 2rem 0 1rem;
            margin-top: 3rem;
            box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
        }

        .footer-content {
            text-align: center;
            padding: 1.5rem 0;
        }

        .footer-menu {
            background-color: #2eb5a7;
            padding: 1rem 0;
            margin-top: 1.5rem;
        }

        .footer-menu ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.5rem 1.5rem;
        }

        .footer-menu li {
            position: relative;
        }

        .footer-menu li:not(:last-child):after {
            content: "|";
            position: absolute;
            right: -0.9rem;
            color: #fff;
        }

        .footer-menu a {
            color: #fff;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
        }

        .footer-menu a:hover {
            color: #294361;
        }

        .copyright {
            background-color: #fff;
            color: #666;
            text-align: center;
            padding: 1rem 0;
            font-size: 0.85rem;
        }

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

            h2 {
                font-size: 1.6rem;
            }

            h3 {
                font-size: 1.3rem;
            }

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

            .logo {
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }

            .slogan {
                text-align: center;
                font-size: 1rem;
            }

            .info-banner {
                font-size: 1rem;
                padding: 1rem 0;
            }

            .main-content {
                margin: 1rem auto;
                padding: 2rem 1.5rem;
            }

            .links-section {
                padding: 1.5rem 1rem;
            }

            .links-section ul {
                grid-template-columns: 1fr;
                gap: 0.6rem;
            }

            .footer-menu ul {
                flex-direction: column;
                align-items: center;
                gap: 0.8rem;
            }

            .footer-menu li:not(:last-child):after {
                display: none;
            }
        }

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

            h1 {
                font-size: 1.6rem;
            }

            .main-content {
                padding: 1.5rem 1rem;
            }

            .transition-section {
                padding: 1.5rem;
            }
        }
    