        * {
            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: #f9f9f9;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #0066cc;
        }
        a:hover {
            text-decoration: underline;
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background: linear-gradient(135deg, #1a237e, #3949ab);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: bold;
            color: white;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Georgia', serif;
            transition: color 0.3s;
        }
        .logo a:hover {
            color: #ffcc00;
            text-decoration: none;
        }
        .desktop-nav ul {
            display: flex;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: background 0.3s;
        }
        .desktop-nav a:hover {
            background: rgba(255, 255, 255, 0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: #1a237e;
            padding: 1rem;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .mobile-nav a:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            padding: 1rem 0;
            background: #e8eaf6;
            font-size: 0.9rem;
        }
        .breadcrumb ul {
            display: flex;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin-left: 0.5rem;
            color: #666;
        }
        .breadcrumb a {
            color: #555;
        }
        main {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            padding: 2rem 0;
        }
        @media (min-width: 992px) {
            main {
                grid-template-columns: 2fr 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }
        .article-content h1 {
            font-size: 2.8rem;
            color: #1a237e;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .article-content h2 {
            font-size: 2rem;
            color: #3949ab;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #ffcc00;
        }
        .article-content h3 {
            font-size: 1.5rem;
            color: #5c6bc0;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
            line-height: 1.8;
        }
        .article-content strong {
            color: #1a237e;
            font-weight: 700;
        }
        .article-content em {
            color: #d81b60;
            font-style: italic;
        }
        .highlight {
            background: #fff9c4;
            padding: 1.5rem;
            border-left: 5px solid #ffcc00;
            margin: 2rem 0;
            border-radius: 8px;
        }
        .image-container {
            margin: 2rem 0;
            text-align: center;
        }
        .image-container img {
            border-radius: 12px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .image-container figcaption {
            margin-top: 0.8rem;
            font-style: italic;
            color: #666;
        }
        .sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }
        .sidebar h3 {
            color: #1a237e;
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
        }
        .search-box, .comment-form, .rating-form {
            margin-bottom: 2rem;
        }
        .search-box input, .comment-form textarea, .comment-form input, .rating-form select {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 2px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .search-box input:focus, .comment-form textarea:focus, .comment-form input:focus, .rating-form select:focus {
            border-color: #3949ab;
            outline: none;
        }
        button {
            background: linear-gradient(to right, #1a237e, #3949ab);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: background 0.3s, transform 0.2s;
        }
        button:hover {
            background: linear-gradient(to right, #0d145c, #283593);
            transform: translateY(-2px);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .stars i {
            color: #ffcc00;
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.3s;
        }
        .stars i:hover {
            color: #ff9800;
        }
        .footer-links {
            background: #e8eaf6;
            padding: 2rem 0;
            margin-top: 2rem;
        }
        .web-link {
            display: inline-block;
            margin: 0.5rem 1rem;
            padding: 0.6rem 1.2rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        }
        .web-link a {
            color: #1a237e;
            font-weight: 600;
        }
        footer {
            background: #1a237e;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }
        .footer-content p {
            margin-bottom: 0.5rem;
        }
        .social-icons {
            margin-top: 1rem;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
        }
        .social-icons a {
            color: white;
            font-size: 1.5rem;
            transition: color 0.3s;
        }
        .social-icons a:hover {
            color: #ffcc00;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-content h1 {
                font-size: 2.2rem;
            }
            .article-content h2 {
                font-size: 1.7rem;
            }
            .header-content {
                flex-wrap: wrap;
            }
            .web-link {
                display: block;
                margin: 0.8rem 0;
            }
        }
