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

        body {
            font-family: 'Roboto Condensed', Arial, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: #222;
            background: #f5f5f5;
        }

        a {
            color: #002649;
            text-decoration: none;
        }

        a:hover {
            color: #000b16;
            text-decoration: underline;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', Arial, sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            line-height: 1.2;
            margin: 20px 0 10px;
            color: #002649;
        }

        h1 {
            font-size: 2.5rem;
            text-align: center;
            padding: 30px 15px;
            background: #002649;
            color: #fff;
            margin: 0 0 30px;
        }

        h2 {
            font-size: 2rem;
        }

        h3 {
            font-size: 1.5rem;
            margin-top: 25px;
        }

        .header {
            background: #002649;
            color: #fff;
            padding: 15px 0;
            box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
        }

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

        .navbar {
            background: #41b6e6;
            padding: 15px 0;
            text-align: center;
        }

        .navbar a {
            color: #002649;
            padding: 10px 15px;
            display: inline-block;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 1.125rem;
        }

        .navbar a:hover {
            background: rgba(0, 0, 0, 0.1);
            text-decoration: none;
        }

        .content-wrapper {
            background: #fff;
            padding: 40px 15px;
            margin: 30px auto;
            max-width: 1200px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        article {
            margin-bottom: 40px;
        }

        article p {
            margin-bottom: 20px;
            font-size: 1rem;
            line-height: 1.8;
        }

        article h2,
        article h3,
        article h4 {
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .transition-section {
            background: #efedea;
            padding: 30px;
            margin: 40px 0;
            border-left: 5px solid #41b6e6;
        }

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

        .links-section {
            background: #f5f5f5;
            padding: 40px 30px;
            margin: 40px 0 0;
        }

        .links-section h3 {
            color: #002649;
            border-bottom: 3px solid #41b6e6;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }

        .links-section ul {
            list-style: none;
            columns: 2;
            column-gap: 30px;
        }

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

        .links-section li:before {
            content: "▸";
            color: #41b6e6;
            margin-right: 8px;
            font-weight: 700;
        }

        .links-section a {
            color: #002649;
            font-size: 1rem;
        }

        .links-section a:hover {
            color: #41b6e6;
        }

        .footer {
            background: #002649;
            color: #fff;
            text-align: center;
            padding: 30px 15px;
            margin-top: 50px;
            border-top: 3px solid #41b6e6;
        }

        .footer p {
            margin: 5px 0;
            font-size: 1rem;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
                padding: 20px 15px;
            }

            h2 {
                font-size: 1.5rem;
            }

            h3 {
                font-size: 1.25rem;
            }

            .navbar a {
                display: block;
                padding: 10px;
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            }

            .content-wrapper {
                padding: 20px 15px;
                margin: 15px;
            }

            .links-section ul {
                columns: 1;
            }

            .transition-section {
                padding: 20px;
                margin: 30px 0;
            }

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

        @media (min-width: 769px) and (max-width: 991px) {
            .links-section ul {
                columns: 2;
            }
        }

        @media (min-width: 992px) {
            .links-section ul {
                columns: 2;
            }
        }
    