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

        body {
            font-family: 'Open Sans', Arial, sans-serif;
            line-height: 1.6;
            color: #181e1f;
            background: #fff;
            padding-top: 85px;
        }

        .top-bar {
            background: #23527C;
            padding: 10px 0;
            color: #AACAE7;
            font-size: 0.9em;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }

        .navbar {
            background: #fff;
            border-bottom: 1px solid #eee;
            position: fixed;
            top: 32px;
            width: 100%;
            z-index: 999;
            padding: 10px 0;
        }

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

        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .site-title {
            font-family: Montserrat, 'Open Sans', sans-serif;
            font-size: 18px;
            font-weight: bold;
            color: #2d2018;
            text-transform: uppercase;
            letter-spacing: 0.2em;
        }

        .site-title img {
            height: 40px;
            width: auto;
        }

        .navbar-nav {
            display: flex;
            list-style: none;
            gap: 20px;
        }

        .navbar-nav a {
            color: #2d2018;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            font-size: 14px;
            padding: 10px 15px;
            transition: color 0.3s ease;
        }

        .navbar-nav a:hover {
            color: #1ca4be;
        }

        .main-content {
            padding: 40px 0;
            min-height: 60vh;
        }

        h1 {
            font-family: Montserrat, 'Open Sans', sans-serif;
            font-size: 2.5em;
            font-weight: bold;
            color: #181e1f;
            margin-bottom: 30px;
            text-align: center;
        }

        article {
            max-width: 800px;
            margin: 0 auto 40px;
            padding: 0 20px;
        }

        article h2, article h3, article h4 {
            font-family: Montserrat, 'Open Sans', sans-serif;
            font-weight: bold;
            color: #181e1f;
            margin: 20px 0 15px;
        }

        article h2 {
            font-size: 1.8em;
            border-bottom: 2px solid #1ca4be;
            padding-bottom: 10px;
        }

        article h3 {
            font-size: 1.4em;
            color: #1ca4be;
        }

        article p {
            margin-bottom: 15px;
            font-size: 16px;
            line-height: 1.7;
        }

        .transition-section {
            background: #f8f9fa;
            padding: 30px 0;
            margin: 40px 0;
        }

        .transition-section .container {
            max-width: 800px;
        }

        .links-section {
            background: #f1f1f1;
            padding: 40px 0;
            margin-top: 40px;
        }

        .links-section h3 {
            font-family: Montserrat, 'Open Sans', sans-serif;
            font-size: 1.5em;
            font-weight: bold;
            color: #2d2018;
            margin-bottom: 20px;
            text-transform: uppercase;
            border-bottom: 2px solid #1ca4be;
            padding-bottom: 10px;
        }

        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 15px;
            margin-bottom: 30px;
        }

        .links-section li {
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 12px 15px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .links-section li:hover {
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            transform: translateY(-2px);
        }

        .links-section a {
            color: #1ca4be;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
        }

        .links-section a:hover {
            color: #276bc0;
            text-decoration: underline;
        }

        .footer {
            background: #181e1f;
            color: #76797f;
            padding: 30px 0;
            margin-top: 60px;
        }

        .footer-menu-wrapper {
            background: #23527C;
            padding: 15px 0;
            text-align: center;
        }

        .footer-menu {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            list-style: none;
        }

        .footer-menu a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-menu a:hover {
            color: #AACAE7;
        }

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

        .copyright-text {
            color: #76797f;
            font-size: 14px;
        }

        @media (max-width: 768px) {
            body {
                padding-top: 60px;
            }

            .top-bar {
                padding: 8px 0;
                font-size: 0.8em;
            }

            .navbar {
                top: 25px;
                padding: 8px 0;
            }

            .header {
                flex-direction: column;
                gap: 10px;
            }

            .site-title {
                font-size: 16px;
            }

            .site-title img {
                height: 30px;
            }

            .navbar-nav {
                flex-wrap: wrap;
                justify-content: center;
                gap: 10px;
            }

            .navbar-nav a {
                font-size: 12px;
                padding: 8px 10px;
            }

            h1 {
                font-size: 2em;
                padding: 0 15px;
            }

            article {
                padding: 0 15px;
            }

            .links-section ul {
                grid-template-columns: 1fr;
            }

            .footer-menu {
                flex-direction: column;
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .navbar-nav {
                display: none;
            }

            .site-title {
                text-align: center;
                width: 100%;
            }

            h1 {
                font-size: 1.8em;
            }

            article h2 {
                font-size: 1.5em;
            }

            article h3 {
                font-size: 1.3em;
            }
        }
    