* {
            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;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2.5rem;
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .mobile-nav-toggle {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: white;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 1rem;
            color: #333;
            text-decoration: none;
            border-bottom: 1px solid #eee;
            transition: background-color 0.3s;
        }
        .mobile-nav a:hover {
            background-color: #f5f5f5;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 1rem 0;
            margin-bottom: 2rem;
        }
        .breadcrumb-content {
            display: flex;
            gap: 0.5rem;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #667eea;
            text-decoration: none;
        }
        .breadcrumb span {
            color: #6c757d;
        }
        .search-section {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 1rem;
            border: 2px solid #667eea;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-button {
            background: #667eea;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-button:hover {
            background: #5a6fd8;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        @media (max-width: 768px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .article-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 1rem 0;
        }
        h1 {
            color: #333;
            margin-bottom: 1.5rem;
            font-size: 2.5rem;
            line-height: 1.2;
        }
        h2 {
            color: #667eea;
            margin: 2rem 0 1rem 0;
            font-size: 1.8rem;
            border-left: 4px solid #667eea;
            padding-left: 1rem;
        }
        h3 {
            color: #555;
            margin: 1.5rem 0 1rem 0;
            font-size: 1.4rem;
        }
        p {
            margin-bottom: 1rem;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            background-color: #fff3cd;
            padding: 1rem;
            border-left: 4px solid #ffc107;
            margin: 1rem 0;
            border-radius: 0 5px 5px 0;
        }
        .tip-box {
            background-color: #d1ecf1;
            padding: 1rem;
            border-radius: 5px;
            margin: 1rem 0;
            border-left: 4px solid #0dcaf0;
        }
        .sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            color: #667eea;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        .sidebar-links {
            list-style: none;
        }
        .sidebar-links li {
            margin-bottom: 0.5rem;
        }
        .sidebar-links a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sidebar-links a:hover {
            color: #667eea;
        }
        .rating-section {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star:hover,
        .star.active {
            color: #ffc107;
        }
        .rating-form {
            max-width: 400px;
            margin: 0 auto;
        }
        .rating-input {
            width: 100%;
            padding: 1rem;
            margin: 1rem 0;
            border: 2px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        .rating-button {
            background: #667eea;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .rating-button:hover {
            background: #5a6fd8;
        }
        .comments-section {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
        }
        .comment-form {
            margin-bottom: 2rem;
        }
        .comment-input {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1rem;
            border: 2px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            resize: vertical;
        }
        .comment-button {
            background: #667eea;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .comment-button:hover {
            background: #5a6fd8;
        }
        .comment {
            border-bottom: 1px solid #eee;
            padding: 1rem 0;
        }
        .comment:last-child {
            border-bottom: none;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }
        .comment-author {
            font-weight: bold;
            color: #667eea;
        }
        .comment-date {
            color: #6c757d;
            font-size: 0.9rem;
        }
        .footer-links {
            background: #343a40;
            padding: 2rem 0;
            margin-bottom: 0;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }
        .web-link {
            background: #495057;
            padding: 1rem;
            border-radius: 5px;
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateY(-2px);
        }
        .web-link a {
            color: white;
            text-decoration: none;
            display: block;
        }
        footer {
            background: #212529;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
            }
        }
        .social-links {
            display: flex;
            gap: 1rem;
        }
        .social-links a {
            color: white;
            font-size: 1.5rem;
            transition: color 0.3s;
        }
        .social-links a:hover {
            color: #667eea;
        }
        .text-center {
            text-align: center;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.5rem;
        }
