        * {
            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: #1a5fb4;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #e95420;
        }
        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, #0d2b4e 0%, #1a5fb4 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: 2rem;
            font-weight: 800;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #ffd700;
        }
        nav.desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav.desktop-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        nav.desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #ffd700;
            transition: width 0.3s ease;
        }
        nav.desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        nav.mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #0d2b4e;
            flex-direction: column;
            padding: 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        nav.mobile-nav.active {
            display: flex;
        }
        nav.mobile-nav ul {
            list-style: none;
            width: 100%;
        }
        nav.mobile-nav li {
            border-bottom: 1px solid #2a4365;
        }
        nav.mobile-nav a {
            color: white;
            display: block;
            padding: 1rem;
            font-weight: 600;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e2e8f0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: #4a5568;
        }
        main {
            padding: 2rem 0;
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 1rem auto;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px dashed #cbd5e0;
        }
        h1 {
            font-size: 2.8rem;
            color: #0d2b4e;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            color: #718096;
            font-style: italic;
        }
        .content-section {
            margin-bottom: 3rem;
            padding: 0 2rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #1a5fb4;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #ffd700;
        }
        h3 {
            font-size: 1.8rem;
            color: #2d3748;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fffacd;
            padding: 1.5rem;
            border-left: 5px solid #e95420;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .tip-box {
            background: #e6fffa;
            border: 1px solid #81e6d9;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .tip-box h4 {
            color: #234e52;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .interactive-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 2rem;
            padding: 2rem;
            background: #f7fafc;
            border-radius: 12px;
            border: 1px solid #cbd5e0;
        }
        .feature-box {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }
        .feature-box h3 {
            color: #1a5fb4;
            margin-top: 0;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid #a0aec0;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
        }
        button, .btn {
            background: linear-gradient(to right, #1a5fb4, #0d2b4e);
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        button:hover, .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(26, 95, 180, 0.3);
        }
        .rating {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #cbd5e0;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star.active, .star:hover {
            color: #ffd700;
        }
        .article-image {
            margin: 3rem auto;
            max-width: 800px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .article-image figcaption {
            text-align: center;
            font-style: italic;
            color: #718096;
            padding: 1rem;
            background: #f7fafc;
        }
        .long-tail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            padding: 3rem 2rem;
            background: #edf2f7;
            margin-top: 3rem;
        }
        .web-link {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid #1a5fb4;
            transition: transform 0.3s ease;
        }
        .web-link:hover {
            transform: translateX(10px);
        }
        footer {
            background: #0d2b4e;
            color: #cbd5e0;
            padding: 3rem 0 1.5rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #2d3748;
            font-size: 0.9rem;
            color: #a0aec0;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav.desktop-nav {
                display: none;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .content-section, .interactive-features {
                padding: 0 1rem;
                margin-left: 0;
                margin-right: 0;
            }
            .interactive-features {
                grid-template-columns: 1fr;
            }
            .long-tail-links {
                grid-template-columns: 1fr;
                padding: 2rem 1rem;
            }
        }
