        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
            max-width: 100%;
            overflow-x: hidden;
        }
        a {
            color: #0056b3;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #ff6b35;
        }
        ul, ol {
            padding-left: 20px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #002244 0%, #0066aa 100%);
            color: white;
            padding: 15px 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 {
            font-size: 1.8rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a {
            color: white;
        }
        .logo span {
            color: #ffd700;
        }
        .nav-menu {
            display: flex;
            list-style: none;
        }
        .nav-menu li {
            margin-left: 25px;
        }
        .nav-menu a {
            color: white;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-menu a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            padding: 10px 0;
            font-size: 0.9rem;
            background-color: #e9ecef;
            margin-bottom: 20px;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #ff6b35;
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
            padding: 30px 0;
        }
        .article-main {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .sidebar {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        h1 {
            font-size: 2.5rem;
            color: #002244;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        h2 {
            font-size: 1.8rem;
            color: #0066aa;
            margin: 30px 0 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #ffd700;
        }
        h3 {
            font-size: 1.4rem;
            color: #333;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 18px;
            text-align: justify;
        }
        .highlight {
            background-color: #fffacd;
            padding: 15px;
            border-left: 4px solid #ffd700;
            margin: 20px 0;
            font-style: italic;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .featured-image {
            margin: 25px 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 8px;
            border: 3px solid #ddd;
        }
        .image-caption {
            font-size: 0.9rem;
            color: #666;
            margin-top: 8px;
        }
        .search-box, .comments-section, .rating-section {
            margin: 30px 0;
            padding: 20px;
            background: #f1f8ff;
            border-radius: 8px;
        }
        .search-box h3, .comments-section h3, .rating-section h3 {
            margin-top: 0;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        input, textarea, select {
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
            width: 100%;
        }
        button {
            padding: 12px 24px;
            background: #0066aa;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        button:hover {
            background: #ff6b35;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 10px 0;
        }
        .stars i {
            color: #ccc;
            cursor: pointer;
            font-size: 1.5rem;
        }
        .stars i:hover, .stars i.active {
            color: #ffd700;
        }
        .footer-links {
            background: #002244;
            color: white;
            padding: 30px 0;
            margin-top: 40px;
        }
        .web-link {
            display: inline-block;
            margin: 8px 15px;
            padding: 10px 15px;
            background: rgba(255,255,255,0.1);
            border-radius: 5px;
            transition: background 0.3s;
        }
        .web-link:hover {
            background: rgba(255,255,255,0.2);
        }
        .web-link a {
            color: #ffd700;
        }
        .copyright {
            text-align: center;
            padding: 20px;
            background: #001122;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .content-area {
                grid-template-columns: 1fr;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #002244;
                padding: 15px;
            }
            .nav-menu.active {
                display: flex;
            }
            .nav-menu li {
                margin: 10px 0;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .header-container {
                flex-wrap: wrap;
            }
        }
        .text-bold {
            font-weight: 800;
        }
        .text-italic {
            font-style: italic;
        }
