        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: #2c5282;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #1a365d;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #fbbf24;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            color: #e2e8f0;
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        nav a:hover {
            color: white;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #fbbf24;
            transition: width 0.3s ease;
        }
        nav a:hover::after {
            width: 100%;
        }
        .breadcrumb {
            background-color: #edf2f7;
            padding: 12px 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 10px;
            color: #718096;
        }
        main {
            padding: 40px 0;
            background: white;
        }
        article {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 2.8rem;
            color: #1a365d;
            margin-bottom: 25px;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #2d3748;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #e2e8f0;
        }
        h3 {
            font-size: 1.5rem;
            color: #4a5568;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.25rem;
            color: #4a5568;
            font-weight: 500;
            margin-bottom: 2rem;
        }
        .highlight {
            background-color: #fffacd;
            padding: 20px;
            border-left: 5px solid #fbbf24;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        b, strong {
            color: #2d3748;
        }
        .interactive-section {
            background: #f7fafc;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            border: 1px solid #e2e8f0;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #4a5568;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #cbd5e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #4299e1;
            box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
        }
        button {
            background: #2c5282;
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
        }
        button:hover {
            background: #1a365d;
            transform: translateY(-2px);
        }
        .stars {
            display: flex;
            gap: 8px;
            margin: 15px 0;
        }
        .star {
            font-size: 1.8rem;
            color: #cbd5e0;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #fbbf24;
        }
        .article-img {
            margin: 40px auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            max-width: 800px;
        }
        .article-img img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        .article-img:hover img {
            transform: scale(1.03);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: #718096;
            padding: 10px;
            font-size: 0.95rem;
        }
        .internal-links {
            margin: 40px 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: #edf2f7;
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #2c5282;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: #e2e8f0;
            transform: translateX(5px);
        }
        footer {
            background: #1a202c;
            color: #cbd5e0;
            padding: 50px 0 20px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        .footer-links h4 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #a0aec0;
        }
        .footer-links a:hover {
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #2d3748;
            font-size: 0.9rem;
            color: #a0aec0;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            .header-top { flex-wrap: wrap; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1e3c72;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            nav.active ul {
                display: flex;
            }
            nav li { margin: 10px 0; }
            .internal-links {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            .interactive-section { padding: 20px; }
            .logo a { font-size: 1.8rem; }
        }
