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

        body {
            font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
            background-color: #F2F2F2;
            background-image: url(/layoutImages/backgroundmap.jpg);
            background-repeat: repeat-x;
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }

        #wrapper {
            max-width: 900px;
            background-color: #FFF;
            margin: 0 auto;
            min-height: 100vh;
            box-shadow: 10px 0 20px rgba(0,0,0,0.1);
        }

        header {
            background-color: #39C;
            background-image: url(/layoutImages/backgroundmap.jpg);
            padding: 20px;
            position: relative;
        }

        header h1 {
            color: #FFF;
            font-size: 24px;
            margin: 0;
        }

        nav {
            background-color: #2291FF;
            background-image: url(/layoutImages/menu.png);
            padding: 10px 0;
            border-bottom: 3px solid #d9d5ca;
        }

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

        nav ul li {
            margin-right: 5px;
        }

        nav ul li a {
            display: block;
            padding: 10px 15px;
            color: #FFF;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        nav ul li a:hover {
            background-image: url(/layoutImages/tabBrown.png);
            background-repeat: no-repeat;
            background-position: bottom left;
            color: #036;
        }

        main {
            padding: 30px 20px;
            max-width: 860px;
            margin: 0 auto;
        }

        article h1 {
            font-size: 28px;
            color: #036;
            margin-bottom: 20px;
            font-weight: bold;
        }

        article h2 {
            font-size: 20px;
            color: #F60;
            margin-top: 25px;
            margin-bottom: 15px;
            font-weight: bold;
        }

        article h3 {
            font-size: 16px;
            color: #036;
            margin-top: 20px;
            margin-bottom: 10px;
            font-weight: bold;
        }

        article h4 {
            font-size: 14px;
            color: #F60;
            margin-top: 15px;
            margin-bottom: 10px;
            text-transform: uppercase;
            font-weight: bold;
        }

        article p {
            font-family: Arial, Helvetica, sans-serif;
            line-height: 1.7;
            margin-bottom: 15px;
            color: #666;
        }

        article a {
            color: #036;
            font-weight: bold;
            text-decoration: none;
        }

        article a:hover {
            text-decoration: underline;
            color: #06C;
        }

        .transition-section {
            background-color: #D9DFEA;
            padding: 20px;
            margin: 30px 0;
            border-radius: 5px;
        }

        .transition-section p {
            font-family: Arial, Helvetica, sans-serif;
            line-height: 1.7;
            margin-bottom: 15px;
            color: #333;
        }

        .links-section {
            background-color: #e9e6d7;
            border: 1px solid #ccc;
            padding: 25px;
            margin: 30px 0;
        }

        .links-section h2 {
            font-size: 22px;
            color: #036;
            margin-bottom: 20px;
            font-weight: bold;
            border-bottom: 2px solid #F60;
            padding-bottom: 10px;
        }

        .links-section h3 {
            font-size: 18px;
            color: #F60;
            margin-top: 25px;
            margin-bottom: 15px;
            font-weight: bold;
        }

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

        .links-section ul li {
            break-inside: avoid;
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }

        .links-section ul li:before {
            content: "▸";
            position: absolute;
            left: 0;
            color: #06C;
            font-weight: bold;
        }

        .links-section ul li a {
            color: #036;
            text-decoration: none;
            font-weight: normal;
            transition: color 0.3s;
        }

        .links-section ul li a:hover {
            color: #06C;
            text-decoration: underline;
        }

        footer {
            background-color: #0092d1;
            color: #FFF;
            padding: 40px 20px 20px;
            margin-top: 50px;
            font-size: 12px;
        }

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

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

        footer p {
            text-align: center;
            margin-top: 20px;
        }

        @media (max-width: 768px) {
            nav ul {
                flex-direction: column;
            }

            nav ul li {
                margin-right: 0;
                margin-bottom: 5px;
            }

            article h1 {
                font-size: 24px;
            }

            article h2 {
                font-size: 18px;
            }

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

            main {
                padding: 20px 15px;
            }
        }

        @media (max-width: 480px) {
            header h1 {
                font-size: 20px;
            }

            article h1 {
                font-size: 22px;
            }

            article h2 {
                font-size: 16px;
            }

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