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

        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f5f5f5;
        }

        .header {
            background: linear-gradient(135deg, #2c5282 0%, #4299e1 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

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

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

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

        .tagline {
            font-size: 1.1rem;
            margin-left: 2rem;
            flex: 1;
        }

        .navbar {
            background: #1a365d;
            padding: 0.75rem 0;
        }

        .nav-list {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .nav-list li a {
            color: white;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: background-color 0.3s;
            font-size: 0.9rem;
        }

        .nav-list li a:hover {
            background: rgba(255,255,255,0.1);
        }

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

        h1 {
            color: #2c5282;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            text-align: center;
            font-weight: 700;
        }

        article {
            margin-bottom: 2rem;
        }

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

        article h2, article h3, article h4 {
            color: #2c5282;
            margin: 1.5rem 0 1rem 0;
        }

        article h2 {
            font-size: 1.8rem;
        }

        article h3 {
            font-size: 1.4rem;
        }

        article h4 {
            font-size: 1.2rem;
        }

        .transition-section {
            margin: 2rem 0;
            padding: 1.5rem;
            background: #f8fafc;
            border-left: 4px solid #4299e1;
            border-radius: 0 8px 8px 0;
        }

        .links-section {
            background: #f8fafc;
            padding: 2rem;
            border-radius: 8px;
            margin-top: 2rem;
        }

        .links-section h3 {
            color: #2c5282;
            margin-bottom: 1rem;
            font-size: 1.3rem;
            border-bottom: 2px solid #4299e1;
            padding-bottom: 0.5rem;
        }

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

        .links-section li {
            padding: 0.3rem 0;
        }

        .links-section li a {
            color: #2c5282;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .links-section li a:hover {
            color: #4299e1;
            text-decoration: underline;
        }

        .footer {
            background: #1a365d;
            color: white;
            padding: 2rem 0;
            margin-top: 3rem;
        }

        .footer-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
        }

        .footer-nav ul {
            list-style: none;
        }

        .footer-nav li {
            margin-bottom: 0.5rem;
        }

        .footer-nav li a {
            color: #cbd5e0;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .footer-nav li a:hover {
            color: white;
        }

        .footer-text {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #2d3748;
            color: #a0aec0;
            font-size: 0.85rem;
        }

        .redtextbold {
            color: #e53e3e;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .tagline {
                margin-left: 0;
            }

            .nav-list {
                justify-content: center;
            }

            .main-content {
                margin: 1rem;
                padding: 1.5rem;
            }

            h1 {
                font-size: 2rem;
            }

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

            .footer-nav {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
        }

        @media (max-width: 480px) {
            .main-content {
                padding: 1rem;
            }

            h1 {
                font-size: 1.8rem;
            }

            .nav-list li a {
                padding: 0.4rem 0.8rem;
                font-size: 0.85rem;
            }
        }
    