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

        body {
            font-family: Arial, Verdana, sans-serif;
            font-size: 14px;
            line-height: 1.6;
            color: #333;
            background-color: #f8f8f8;
        }

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

        header {
            background: linear-gradient(135deg, #000099 0%, #0066cc 100%);
            color: white;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 80px;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            text-align: center;
        }

        nav {
            background-color: #fff;
            border-bottom: 3px solid #8C3404;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .nav-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            padding: 0;
        }

        .nav-item {
            flex: 1;
            min-width: 120px;
            text-align: center;
        }

        .nav-item a {
            display: block;
            padding: 15px 10px;
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: all 0.3s ease;
            border-right: 1px solid #e0e0e0;
        }

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

        .nav-item a:hover {
            background-color: #8C3404;
            color: white;
        }

        main {
            background-color: white;
            margin: 20px auto;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        h1 {
            color: #000099;
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 30px;
            text-align: left;
            border-bottom: 3px solid #8C3404;
            padding-bottom: 15px;
        }

        article {
            margin-bottom: 40px;
        }

        article p {
            margin-bottom: 20px;
            text-align: justify;
            line-height: 1.8;
        }

        article h2 {
            color: #000000;
            font-weight: bold;
            margin: 30px 0 20px 0;
            font-size: 24px;
        }

        article h3 {
            color: #8C3404;
            font-weight: bold;
            margin: 25px 0 15px 0;
            font-size: 20px;
        }

        article h4 {
            color: #E11E20;
            font-weight: bold;
            margin: 20px 0 10px 0;
            font-size: 18px;
        }

        .transition-section {
            margin: 40px 0;
            padding: 20px;
            background-color: #f9f9f9;
            border-left: 4px solid #8C3404;
            border-radius: 4px;
        }

        .links-section {
            background-color: #fafafa;
            padding: 30px;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
        }

        .links-section h3 {
            color: #8C3404;
            font-weight: bold;
            margin-bottom: 20px;
            font-size: 20px;
            border-bottom: 2px solid #8C3404;
            padding-bottom: 8px;
        }

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

        .links-section li {
            padding: 8px 0;
            border-bottom: 1px dotted #ccc;
        }

        .links-section li a {
            text-decoration: none;
            color: #333;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .links-section li a:hover {
            color: #8C3404;
        }

        footer {
            background-color: #333;
            color: white;
            padding: 30px 0;
            margin-top: 40px;
        }

        .footer-nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 20px;
        }

        .footer-nav a {
            color: white;
            text-decoration: none;
            padding: 5px 15px;
            border-right: 1px dotted #666;
            font-size: 12px;
        }

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

        .footer-nav a:hover {
            color: #8C3404;
        }

        .footer-copyright {
            text-align: center;
            font-size: 12px;
            color: #ccc;
        }

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

            .nav-container {
                flex-direction: column;
            }

            .nav-item {
                min-width: 100%;
            }

            .nav-item a {
                border-right: none;
                border-bottom: 1px solid #e0e0e0;
            }

            main {
                padding: 20px;
                margin: 10px auto;
            }

            h1 {
                font-size: 24px;
            }

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

            .footer-nav {
                flex-direction: column;
                align-items: center;
            }

            .footer-nav a {
                border-right: none;
                border-bottom: 1px dotted #666;
                padding: 8px 0;
            }

            .footer-nav a:last-child {
                border-bottom: none;
            }
        }

        @media (max-width: 480px) {
            .logo {
                font-size: 20px;
            }

            h1 {
                font-size: 20px;
            }

            main {
                padding: 15px;
            }
        }
    