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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #FFF5E1 0%, #FFEBBD 100%);
            color: #000000;
            line-height: 1.6;
            min-height: 100vh;
        }

        header {
            background: linear-gradient(to right, #FFEBBD, #FFE4A3);
            border-bottom: 3px solid #0066CC;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .logo-section {
            flex-shrink: 0;
        }

        .title-section {
            flex-grow: 1;
        }

        .title-section h1 {
            color: #000080;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            text-align: center;
        }

        nav {
            background: #000080;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
        }

        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0;
        }

        nav li {
            flex: 1 1 auto;
            min-width: 150px;
        }

        nav a {
            display: block;
            padding: 15px 20px;
            color: #FFFFFF;
            text-decoration: none;
            text-align: center;
            font-weight: 500;
            border-right: 1px solid rgba(255, 255, 255, 0.2);
            transition: background-color 0.3s ease;
        }

        nav li:last-child a {
            border-right: none;
        }

        nav a:hover {
            background-color: #0066CC;
        }

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

        article {
            background: #FFFFFF;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
            border: 2px solid #0066CC;
        }

        article h2 {
            color: #000080;
            font-size: 1.8rem;
            margin-top: 30px;
            margin-bottom: 15px;
            font-variant: small-caps;
            letter-spacing: 2px;
            border-bottom: 2px solid #FF9900;
            padding-bottom: 10px;
        }

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

        article h3 {
            color: #000080;
            font-size: 1.4rem;
            margin-top: 25px;
            margin-bottom: 12px;
            font-variant: small-caps;
            letter-spacing: 1.5px;
        }

        article p {
            margin-bottom: 15px;
            font-size: 1.1rem;
            text-align: justify;
        }

        article table {
            width: 100%;
            margin: 20px 0;
            border-collapse: collapse;
            background: #FFFFFF;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        article table th {
            background: #000080;
            color: #FFFFFF;
            padding: 15px;
            text-align: center;
            font-size: 1.1rem;
            border: 2px solid #0066CC;
        }

        article table td {
            padding: 12px;
            text-align: center;
            border: 2px solid #0066CC;
        }

        article table tr:nth-child(even) {
            background: #FFF9E6;
        }

        article a {
            color: #0066CC;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        article a:hover {
            color: #FF9900;
            text-decoration: underline;
        }

        article a:visited {
            color: #FF9900;
        }

        .transition-section {
            background: linear-gradient(135deg, #FFE4A3 0%, #FFEBBD 100%);
            padding: 30px 40px;
            border-radius: 10px;
            margin-bottom: 40px;
            border-left: 5px solid #0066CC;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        }

        .transition-section p {
            font-size: 1.1rem;
            color: #000000;
            margin-bottom: 15px;
        }

        .transition-section p:last-child {
            margin-bottom: 0;
        }

        .links-section {
            background: #FFFFFF;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border: 2px solid #0066CC;
        }

        .links-section h3 {
            color: #000080;
            font-size: 1.5rem;
            margin-bottom: 20px;
            margin-top: 30px;
            padding-bottom: 10px;
            border-bottom: 2px solid #FF9900;
        }

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

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

        .links-section ul:last-child {
            margin-bottom: 0;
        }

        .links-section li {
            padding-left: 20px;
            position: relative;
        }

        .links-section li:before {
            content: "▸";
            position: absolute;
            left: 0;
            color: #FF9900;
            font-weight: bold;
        }

        .links-section a {
            color: #0066CC;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s ease;
        }

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

        .links-section a:visited {
            color: #FF9900;
        }

        .alert-box {
            background: #FFF0F0;
            border: 2px solid #FF0000;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            text-align: center;
        }

        .alert-box p {
            color: #000000;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .alert-box p:last-child {
            margin-bottom: 0;
        }

        .highlight-box {
            background: linear-gradient(135deg, #E8F4FF 0%, #D4E9FF 100%);
            border: 3px solid #0066CC;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            text-align: center;
            box-shadow: 0 3px 10px rgba(0, 102, 204, 0.2);
        }

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

            .title-section h1 {
                font-size: 1.8rem;
            }

            nav ul {
                flex-direction: column;
            }

            nav li {
                min-width: 100%;
            }

            nav a {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            }

            article {
                padding: 25px;
            }

            article h2 {
                font-size: 1.5rem;
            }

            article h3 {
                font-size: 1.2rem;
            }

            article p {
                font-size: 1rem;
                text-align: left;
            }

            .transition-section {
                padding: 20px 25px;
            }

            .links-section {
                padding: 25px;
            }

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

            article table {
                font-size: 0.9rem;
            }

            article table th,
            article table td {
                padding: 8px;
            }
        }

        @media (max-width: 480px) {
            .title-section h1 {
                font-size: 1.5rem;
            }

            main {
                padding: 20px 15px;
            }

            article {
                padding: 20px;
            }

            .links-section {
                padding: 20px;
            }
        }
    