        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            max-width: 100%;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul, ol {
            list-style-position: inside;
            margin-left: 1.5rem;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 2.8rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: #1a365d;
        }
        h2 {
            font-size: 2.2rem;
            margin: 2.5rem 0 1.2rem;
            color: #2d3748;
            border-left: 5px solid #4f46e5;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
            color: #4a5568;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #fff3cd;
            padding: 1.5rem;
            border-left: 4px solid #ffc107;
            margin: 1.5rem 0;
            border-radius: 0 5px 5px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .keyword {
            font-weight: 700;
            color: #4f46e5;
        }
        header {
            background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffc107;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            color: #4f46e5;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            gap: 2rem;
        }
        .nav-links a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-links a:hover {
            color: #ffc107;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #ffc107;
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffc107;
        }
        .breadcrumb {
            background-color: #e2e8f0;
            padding: 0.8rem 20px;
            font-size: 0.9rem;
            color: #4a5568;
        }
        .breadcrumb a {
            color: #4f46e5;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 70px;
                right: -100%;
                flex-direction: column;
                background-color: #1a365d;
                width: 70%;
                height: calc(100vh - 70px);
                padding: 2rem;
                transition: right 0.4s ease;
                box-shadow: -5px 0 15px rgba(0,0,0,0.2);
                z-index: 999;
            }
            .nav-links.active {
                right: 0;
            }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.4rem; }
        }
        .interactive-module {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 2.5rem 0;
        }
        .module-title {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: #1a365d;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        label {
            font-weight: 600;
            color: #4a5568;
        }
        input, textarea, select {
            padding: 0.8rem 1rem;
            border: 1px solid #cbd5e0;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #4f46e5;
            box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
        }
        button {
            background: linear-gradient(to right, #4f46e5, #7c3aed);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 6px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            align-self: flex-start;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(79, 70, 229, 0.3);
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #cbd5e0;
            cursor: pointer;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #ffc107;
        }
        main {
            padding: 2.5rem 0;
        }
        .article-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .article-content {
                grid-template-columns: 1fr;
            }
        }
        .content-body {
            background-color: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #1a365d;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e2e8f0;
        }
        .featured-image {
            margin: 2.5rem 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        .featured-image img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: #718096;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .footer-links {
            background-color: #2d3748;
            padding: 3rem 20px;
            margin-top: 3rem;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: #4a5568;
            padding: 1rem 1.5rem;
            border-radius: 6px;
            transition: background-color 0.3s ease;
        }
        .web-link:hover {
            background-color: #5a6578;
        }
        .web-link a {
            color: #e2e8f0;
            font-weight: 500;
        }
        .web-link a:hover {
            color: #ffc107;
            text-decoration: underline;
        }
        footer {
            background-color: #1a365d;
            color: #cbd5e0;
            text-align: center;
            padding: 2rem;
        }
        .copyright {
            font-size: 0.9rem;
            margin-top: 1rem;
            color: #a0aec0;
        }
