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

        body {
            font-family: 'Lato', sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

        .header {
            background-color: #006BB3;
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .header-nav {
            background-color: rgba(255,255,255,0.1);
            padding: 0.5rem 0;
        }

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

        .top-menu {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
        }

        .top-menu a {
            color: white;
            text-decoration: none;
            font-size: 0.9rem;
            transition: opacity 0.3s ease;
        }

        .top-menu a:hover {
            opacity: 0.8;
        }

        .header-main {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0;
        }

        .logo {
            font-size: 2rem;
            font-weight: 900;
            color: white;
            text-decoration: none;
        }

        .baseline {
            text-align: right;
            color: white;
        }

        .baseline p {
            margin: 0;
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .main-content {
            background: white;
            margin: 2rem auto;
            max-width: 1200px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .breadcrumb {
            background-color: #f8f9fa;
            padding: 1rem;
            border-bottom: 1px solid #e9ecef;
            font-size: 0.9rem;
            color: #666;
        }

        .content-wrapper {
            padding: 2rem;
        }

        h1 {
            color: #006BB3;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        article {
            margin-bottom: 2rem;
        }

        article p {
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        article h2 {
            color: #006BB3;
            font-size: 1.8rem;
            margin: 2rem 0 1rem 0;
            font-weight: 600;
        }

        article h3 {
            color: #333;
            font-size: 1.4rem;
            margin: 1.5rem 0 0.75rem 0;
            font-weight: 600;
        }

        article h4 {
            color: #333;
            font-size: 1.2rem;
            margin: 1rem 0 0.5rem 0;
            font-weight: 600;
        }

        .transition-section {
            background-color: #f8f9fa;
            padding: 2rem;
            margin: 2rem 0;
            border-left: 4px solid #006BB3;
            border-radius: 0 4px 4px 0;
        }

        .links-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 2rem;
            margin-top: 2rem;
            border-radius: 8px;
        }

        .links-section h3 {
            color: #006BB3;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
            border-bottom: 2px solid #006BB3;
            padding-bottom: 0.5rem;
        }

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

        .links-section li {
            background: white;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

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

        .links-section a {
            display: block;
            padding: 0.75rem 1rem;
            color: #333;
            text-decoration: none;
            border-left: 3px solid #006BB3;
            transition: border-left-width 0.3s ease;
        }

        .links-section a:hover {
            color: #006BB3;
            border-left-width: 6px;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 0.5rem;
            }

            .header-main {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .baseline {
                text-align: center;
            }

            .top-menu {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            h1 {
                font-size: 2rem;
            }

            .content-wrapper {
                padding: 1rem;
            }

            .transition-section,
            .links-section {
                padding: 1rem;
            }

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

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

            article h2 {
                font-size: 1.5rem;
            }

            article h3 {
                font-size: 1.25rem;
            }
        }
    