        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #007bff;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #0056b3;
        }
        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, #1a237e, #4a148c);
            color: white;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #ffeb3b;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav a {
            color: white;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 5px;
        }
        nav a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: white;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 10px 20px;
            margin-top: 10px;
            border-radius: 5px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin-left: 10px;
            color: #6c757d;
        }
        main {
            padding: 30px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .article-content h1 {
            font-size: 2.5rem;
            color: #1a237e;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        .article-content h2 {
            font-size: 1.8rem;
            color: #4a148c;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e9ecef;
        }
        .article-content h3 {
            font-size: 1.4rem;
            color: #333;
            margin: 20px 0 10px;
        }
        .article-content p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .article-content strong {
            color: #d81b60;
            font-weight: 700;
        }
        .article-content em {
            color: #388e3c;
        }
        .highlight {
            background-color: #fff3cd;
            padding: 15px;
            border-left: 4px solid #ffc107;
            margin: 20px 0;
            border-radius: 5px;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .sidebar {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            color: #1a237e;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .search-box, .comment-form, .rating-form {
            margin-bottom: 30px;
        }
        .search-box input, .comment-form textarea, .comment-form input, .rating-form select {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
        }
        .search-box button, .comment-form button, .rating-form button {
            width: 100%;
            padding: 12px;
            background-color: #1a237e;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s ease;
        }
        .search-box button:hover, .comment-form button:hover, .rating-form button:hover {
            background-color: #4a148c;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 15px;
        }
        .stars i {
            color: #ffc107;
            cursor: pointer;
            font-size: 1.5rem;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .footer-links {
            background-color: #343a40;
            padding: 40px 20px;
            margin-top: 40px;
        }
        .footer-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: #495057;
            padding: 15px;
            border-radius: 5px;
            transition: transform 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: #6c757d;
        }
        .web-link a {
            color: white;
            font-weight: 500;
            display: block;
        }
        footer {
            background-color: #212529;
            color: white;
            text-align: center;
            padding: 20px;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            nav ul {
                flex-direction: column;
                gap: 10px;
                display: none;
                width: 100%;
                background-color: #1a237e;
                padding: 20px;
                border-radius: 10px;
                margin-top: 15px;
            }
            #nav-toggle:checked ~ nav ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .article-content h1 {
                font-size: 2rem;
            }
            .article-content h2 {
                font-size: 1.5rem;
            }
            .sidebar {
                position: static;
            }
        }
        .web-link a:hover {
            color: #ffeb3b;
        }
        .article-content a:hover {
            text-decoration: underline;
        }
        button:hover {
            opacity: 0.9;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
