        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #0A4DA6; 
            --secondary: #FF5500; 
            --dark: #1A1A2E;
            --light: #F8F9FA;
            --gray: #6C757D;
            --success: #28A745;
            --danger: #DC3545;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --radius: 8px;
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        header {
            background-color: white;
            box-shadow: var(--shadow);
            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: 2rem;
            font-weight: 900;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: -1px;
        }
        .logo span {
            color: var(--secondary);
        }
        nav.desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav.desktop-nav a {
            font-weight: 600;
            font-size: 1rem;
            padding: 5px 0;
            position: relative;
        }
        nav.desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: var(--transition);
        }
        nav.desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: var(--primary);
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background: white;
            padding: 20px;
            box-shadow: var(--shadow);
            position: absolute;
            width: 100%;
            left: 0;
            top: 100%;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #f1f3f5;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb span {
            margin: 0 8px;
            color: #aaa;
        }
        .breadcrumb .current {
            color: var(--primary);
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, #1A6BC4 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            border-radius: 0 0 var(--radius) var(--radius);
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        .search-box {
            max-width: 600px;
            margin: 40px auto 0;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .search-box input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1rem;
        }
        .search-box button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: #e64a00;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .article-content {
            background: white;
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .article-content h2 {
            color: var(--primary);
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
            font-size: 1.8rem;
        }
        .article-content h3 {
            color: var(--dark);
            margin: 25px 0 10px;
            font-size: 1.4rem;
        }
        .article-content p {
            margin-bottom: 20px;
            font-size: 1.05rem;
        }
        .article-content ul, .article-content ol {
            margin-left: 20px;
            margin-bottom: 20px;
        }
        .article-content li {
            margin-bottom: 8px;
        }
        .highlight {
            background-color: #fff9e6;
            border-left: 4px solid var(--secondary);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .highlight p {
            margin: 0;
        }
        .emphasize {
            font-weight: 700;
            color: var(--primary);
        }
        .inline-link {
            font-weight: 600;
            border-bottom: 1px dashed;
        }
        .feature-img {
            margin: 30px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .feature-img figcaption {
            padding: 10px;
            background: #f8f9fa;
            font-size: 0.9rem;
            color: var(--gray);
            text-align: center;
        }
        aside.sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: white;
            padding: 25px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dotted #eee;
        }
        .related-links a::before {
            content: "👉";
            margin-right: 10px;
            font-size: 0.9rem;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: gold;
            margin: 10px 0;
            cursor: pointer;
        }
        .stars span {
            margin: 0 3px;
        }
        .stars span:hover {
            color: orange;
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: var(--radius);
            margin-top: 10px;
            font-family: inherit;
            resize: vertical;
            min-height: 120px;
        }
        .comment-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: var(--radius);
            margin-top: 15px;
            cursor: pointer;
            font-weight: 600;
            width: 100%;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background: #083a7d;
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-col h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: #fff;
        }
        friend-link {
            display: block;
            margin-bottom: 8px;
        }
        friend-link a {
            color: #ccc;
        }
        friend-link a:hover {
            color: var(--secondary);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            nav.desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .article-content {
                padding: 25px;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
