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

        body {
            font-family: Arial, Helvetica, sans-serif;
            font-size: 13px;
            line-height: 1.6;
            color: #000;
            background: #fff;
        }

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

        header {
            background: #002943;
            padding: 20px 0;
            border-bottom: 3px solid #9abc33;
        }

        .logo {
            text-align: center;
            padding: 20px 0;
        }

        .logo h1 {
            color: #48B6CF;
            font-size: 28px;
            font-weight: bold;
            text-transform: uppercase;
            margin: 0;
        }

        nav {
            background: #002943;
            padding: 15px 0;
        }

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

        nav ul li a {
            color: #fff;
            text-decoration: none;
            padding: 10px 15px;
            display: block;
            font-size: 14px;
            text-transform: uppercase;
            transition: all 0.3s;
        }

        nav ul li a:hover {
            background: #9abc33;
            color: #fff;
        }

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

        h1 {
            font-size: 28px;
            color: #0b6a86;
            margin-bottom: 20px;
            line-height: 1.3;
            padding-bottom: 10px;
            border-bottom: 2px solid #2eaec6;
        }

        h2 {
            font-size: 22px;
            color: #0b6a86;
            margin: 25px 0 15px;
        }

        h3 {
            font-size: 18px;
            color: #000;
            margin: 20px 0 10px;
            font-weight: bold;
        }

        article {
            margin-bottom: 30px;
        }

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

        article h2, article h3, article h4 {
            text-align: left;
        }

        .transition-section {
            margin: 30px 0;
            padding: 20px;
            background: #f9f9f9;
            border-left: 4px solid #2eaec6;
        }

        .links-section {
            background: #f5f5f5;
            padding: 30px 20px;
            margin: 30px 0;
            border-radius: 3px;
        }

        .links-section h3 {
            color: #002943;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #9abc33;
        }

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

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

        .links-section ul li a {
            color: #2eaec6;
            text-decoration: none;
            display: block;
            padding: 5px 0;
            transition: color 0.3s;
        }

        .links-section ul li a:hover {
            color: #9abc33;
            padding-left: 10px;
        }

        footer {
            background: #032c45;
            color: #666;
            padding: 30px 0 20px;
            margin-top: 40px;
        }

        footer .footer-content {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        footer .footer-column {
            flex: 1;
            min-width: 200px;
        }

        footer h3 {
            color: #fff;
            font-size: 15px;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        footer ul {
            list-style: none;
        }

        footer ul li {
            margin-bottom: 8px;
        }

        footer ul li a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s;
        }

        footer ul li a:hover {
            color: #48b6cf;
        }

        footer .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #222;
            color: #fff;
            font-size: 11px;
        }

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

            h1 {
                font-size: 22px;
            }

            h2 {
                font-size: 18px;
            }

            nav ul {
                flex-direction: column;
                align-items: center;
            }

            nav ul li {
                width: 100%;
                text-align: center;
            }

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

            footer .footer-content {
                flex-direction: column;
            }
        }

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

            h1 {
                font-size: 20px;
            }

            .logo h1 {
                font-size: 22px;
            }

            nav ul li a {
                font-size: 13px;
                padding: 8px 12px;
            }
        }
    