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

        body {
            font-family: "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
            font-size: 12px;
            line-height: 1.6;
            color: #5B534B;
            background: #4e95b9;
        }

        #page {
            width: 100%;
            max-width: 970px;
            margin: 0 auto;
            background: white;
        }

        header {
            background: white;
            padding: 20px 15px;
            border-bottom: 1px solid #e0e0e0;
        }

        header h1 {
            font-size: 2em;
            color: #5F574F;
            margin-bottom: 10px;
        }

        nav {
            background: linear-gradient(to bottom, #5bb2e1, #4e95b9);
            padding: 0;
        }

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

        nav ul li {
            margin: 0;
        }

        nav ul li a {
            display: block;
            padding: 12px 20px;
            color: white;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 11px;
            font-weight: bold;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        nav ul li a:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #5F574F;
        }

        main {
            padding: 30px 20px;
            background: white;
        }

        main h1 {
            font-size: 2.1em;
            color: #5F574F;
            margin-bottom: 0.7em;
            padding-bottom: 10px;
            border-bottom: 2px solid #DFDED6;
        }

        article {
            margin-bottom: 2em;
        }

        article h2 {
            font-size: 1.6em;
            line-height: 1.3em;
            margin-top: 1em;
            margin-bottom: 0.667em;
            color: #5F574F;
            font-family: Georgia, "Times New Roman", serif;
            font-weight: normal;
        }

        article h3 {
            font-size: 1.3em;
            line-height: 1.3em;
            margin-top: 0.9em;
            margin-bottom: 0.769em;
            color: #5F574F;
            font-family: Georgia, "Times New Roman", serif;
            font-weight: normal;
        }

        article p {
            font-size: 1.1em;
            line-height: 1.6em;
            margin-bottom: 1em;
        }

        .transition-section {
            margin: 2em 0;
            padding: 1.5em;
            background: #F6F5F2;
            border-left: 4px solid #a4b000;
        }

        .transition-section p {
            font-size: 1.1em;
            line-height: 1.6em;
            margin-bottom: 1em;
        }

        .links-section {
            margin-top: 3em;
            padding: 2em;
            background: #F6F5F2;
            border-radius: 4px;
        }

        .links-section h3 {
            font-size: 1.3em;
            color: #5F574F;
            margin-bottom: 0.8em;
            margin-top: 1.5em;
            font-family: Georgia, "Times New Roman", serif;
        }

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

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

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

        .links-section ul li:before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.6em;
            width: 6px;
            height: 6px;
            background: #a4b000;
            border-radius: 50%;
        }

        .links-section ul li a {
            color: #a4b000;
            text-decoration: none;
            border-bottom: 1px dotted #928B81;
            transition: all 0.3s ease;
        }

        .links-section ul li a:hover {
            color: #5bb2e1;
            border-bottom-color: #5bb2e1;
        }

        footer {
            background: white;
            padding: 20px;
            text-align: center;
            border-top: 2px solid #DFDED6;
            font-size: 0.9em;
            color: #928B81;
        }

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

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

            nav ul li a {
                padding: 10px 15px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            main {
                padding: 20px 15px;
            }

            main h1 {
                font-size: 1.8em;
            }

            article h2 {
                font-size: 1.4em;
            }

            article h3 {
                font-size: 1.2em;
            }

            .links-section {
                padding: 1.5em;
            }

            .links-section ul {
                columns: 1;
            }

            .transition-section {
                padding: 1em;
            }
        }

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

            header h1 {
                font-size: 1.6em;
            }

            main h1 {
                font-size: 1.5em;
            }

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