        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #4a6fa5; 
            --secondary: #e76f51; 
            --accent: #2a9d8f; 
            --light: #f8f9fa;
            --dark: #264653;
            --gray: #6c757d;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #fefefe;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: var(--primary);
            color: white;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }
        .btn:hover {
            background: var(--dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        section { padding: 60px 0; }
        h1, h2, h3, h4 {
            color: var(--dark);
            line-height: 1.3;
            margin-bottom: 1rem;
        }
        h1 { font-size: 2.8rem; }
        h2 { font-size: 2.2rem; border-bottom: 3px solid var(--accent); padding-bottom: 10px; margin-bottom: 30px;}
        h3 { font-size: 1.8rem; color: var(--primary); }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        .highlight {
            background-color: #fff9db;
            padding: 25px;
            border-left: 5px solid var(--secondary);
            border-radius: 0 8px 8px 0;
            margin: 30px 0;
        }
        .emoji { margin-right: 8px; }
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            display: flex;
            align-items: center;
        }
        .logo i { color: var(--secondary); margin-right: 10px; }
        .logo span { color: var(--accent); }
        .nav-desktop ul {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent);
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after { width: 100%; }
        .nav-desktop a:hover { color: var(--accent); }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--dark);
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: white;
            box-shadow: var(--shadow);
            flex-direction: column;
            padding: 20px;
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile ul { flex-direction: column; }
        .nav-mobile li { margin: 15px 0; }
        .breadcrumb {
            background: #f1f3f5;
            padding: 15px 20px;
            font-size: 0.95rem;
        }
        .breadcrumb a { color: var(--primary); }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb span { color: var(--gray); margin: 0 8px; }
        .hero {
            background: linear-gradient(135deg, #e3f2fd 0%, #fce4ec 100%);
            padding: 80px 0;
            text-align: center;
        }
        .hero h1 { margin-bottom: 20px; }
        .hero p { font-size: 1.3rem; max-width: 800px; margin: 0 auto 30px; color: var(--gray); }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-wrapper { grid-template-columns: 1fr; }
        }
        .article-content h2, .article-content h3 { margin-top: 40px; }
        .article-content p { text-align: justify; }
        .article-img {
            margin: 30px auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            max-width: 800px;
        }
        .article-img img { width: 100%; }
        .article-img figcaption {
            text-align: center;
            font-style: italic;
            padding: 10px;
            background: #f8f9fa;
            color: var(--gray);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .stat-card {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            text-align: center;
            border-top: 5px solid var(--accent);
        }
        .stat-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; }
        .stat-card h3 { font-size: 2rem; color: var(--dark); }
        .sidebar-widget {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--dark);
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }
        .search-form input, .comment-form input, .comment-form textarea, .rating-form select {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
        }
        .search-form button, .comment-form button, .rating-form button {
            width: 100%;
        }
        .star-rating { display: flex; gap: 5px; margin-bottom: 15px; }
        .star-rating i { color: #ffc107; cursor: pointer; font-size: 1.5rem; }
        .user-review { border-top: 1px solid #eee; padding-top: 15px; margin-top: 15px; }
        .user-review h4 { color: var(--primary); }
        .footer-links {
            background: var(--dark);
            padding: 50px 0 30px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 15px;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateX(5px);
        }
        .web-link a {
            color: #ddd;
            display: block;
        }
        .web-link a:hover { color: white; }
        footer {
            background: #1a252f;
            color: #aaa;
            text-align: center;
            padding: 30px 20px;
        }
        .copyright { margin-top: 20px; font-size: 0.9rem; }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .header-container { padding: 15px; }
            .hero { padding: 50px 20px; }
            section { padding: 40px 0; }
            .stats-grid { grid-template-columns: 1fr; }
        }
