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

        html {
            font-size: 16px;
            line-height: 1.4;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #fdfaf3;
            color: #222;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        header {
            background: #fdfaf3;
            border-bottom: 2px solid #0b4666;
            padding: 20px 0;
            position: relative;
        }

        header::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .site-title {
            font-size: 2em;
            font-weight: 600;
            color: #0b4666;
            text-transform: uppercase;
            margin: 0;
        }

        .site-description {
            font-size: 1.1em;
            color: #35752d;
            margin-top: 5px;
        }

        main {
            max-width: 1000px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        h1 {
            font-size: 2.5em;
            color: #1a112f;
            margin-bottom: 30px;
            text-transform: uppercase;
            font-weight: 600;
            line-height: 1.2em;
        }

        article {
            margin-bottom: 40px;
        }

        article h2 {
            font-size: 2em;
            color: #0b4666;
            margin-top: 30px;
            margin-bottom: 15px;
            text-transform: uppercase;
            font-weight: 600;
        }

        article h3 {
            font-size: 1.8em;
            color: #0b4666;
            margin-top: 25px;
            margin-bottom: 12px;
            text-transform: uppercase;
            font-weight: 600;
        }

        article h4 {
            font-size: 1.5em;
            color: #35752d;
            margin-top: 20px;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        article h5 {
            font-size: 1.3em;
            color: #4b555b;
            margin-top: 15px;
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        article h6 {
            font-size: 1.1em;
            color: #6e927c;
            margin-top: 12px;
            margin-bottom: 6px;
            text-transform: uppercase;
        }

        article p {
            margin: 1.5em 0;
            line-height: 1.6em;
        }

        article p:first-child {
            margin-top: 0;
        }

        article ul,
        article ol {
            margin: 1.5em 0;
            padding-left: 25px;
        }

        article li {
            margin-bottom: 0.5em;
            line-height: 1.5em;
        }

        article a {
            color: #35752d;
            text-decoration: none;
            border-bottom: 2px solid rgba(53, 117, 45, 0.1);
            transition: all 0.2s linear;
        }

        article a:hover {
            color: #0b4666;
            border-color: rgba(11, 70, 102, 0.4);
        }

        .transition-section {
            background: rgba(110, 146, 124, 0.1);
            padding: 30px;
            margin: 40px 0;
            border-radius: 4px;
            border: 2px solid rgba(110, 146, 124, 0.2);
        }

        .transition-section p {
            margin: 1em 0;
            line-height: 1.6em;
        }

        .links-section {
            background: rgba(89, 187, 77, 0.05);
            padding: 40px 30px;
            margin: 40px 0;
            border: 2px solid rgba(89, 187, 77, 0.2);
            border-radius: 4px;
        }

        .links-section h2 {
            font-size: 2em;
            color: #0b4666;
            margin-bottom: 10px;
            text-transform: uppercase;
            font-weight: 600;
        }

        .links-section h3 {
            font-size: 1.5em;
            color: #35752d;
            margin-top: 30px;
            margin-bottom: 15px;
            text-transform: uppercase;
            font-weight: 600;
        }

        .links-section h3:first-of-type {
            margin-top: 20px;
        }

        .links-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
        }

        .links-section li {
            margin: 0;
            padding: 0;
        }

        .links-section a {
            color: #0b4666;
            text-decoration: none;
            padding: 8px 12px;
            display: block;
            border-left: 3px solid #59bb4d;
            background: rgba(255, 255, 255, 0.5);
            transition: all 0.2s ease-in-out;
        }

        .links-section a:hover {
            background: rgba(89, 187, 77, 0.15);
            border-left-color: #35752d;
            padding-left: 18px;
        }

        footer {
            background: #1a112f;
            color: #fdfaf3;
            padding: 40px 20px 20px;
            position: relative;
            margin-top: 60px;
        }

        footer::before {
            content: "";
            position: absolute;
            top: -10px;
            left: 0;
            width: 100%;
            height: 10px;
            box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.3);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-content p {
            color: #4b555b;
            font-size: 0.9em;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 2px solid rgba(253, 250, 243, 0.1);
        }

        @media screen and (min-width: 600px) {
            .site-title {
                font-size: 2.5em;
            }

            h1 {
                font-size: 3em;
            }

            .links-section ul {
                grid-template-columns: 1fr 1fr;
                gap: 12px 20px;
            }
        }

        @media screen and (min-width: 900px) {
            header {
                padding: 30px 0;
            }

            .site-title {
                font-size: 3em;
            }

            main {
                padding: 60px 20px;
            }

            .transition-section {
                padding: 40px;
            }

            .links-section {
                padding: 50px 40px;
            }
        }

        @media print {
            * {
                background: transparent !important;
                color: #000 !important;
                box-shadow: none !important;
                text-shadow: none !important;
            }

            a {
                text-decoration: underline;
            }

            header::after,
            footer::before {
                display: none;
            }
        }
    