* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #2A2D7A;
            --secondary: #FF4C4C;
            --accent: #4CAF50;
            --dark: #1A1C3F;
            --light: #F5F7FF;
            --text: #333333;
            --gray: #E0E0E0;
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--light);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
            color: white;
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: white;
        }
        .logo span {
            color: var(--secondary);
            text-shadow: 0 0 5px rgba(255, 76, 76, 0.5);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
        }
        .breadcrumb {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 0.8rem 0;
            margin-top: 0.5rem;
            border-radius: 4px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            opacity: 0.9;
        }
        .breadcrumb a:hover {
            opacity: 1;
            color: var(--secondary);
        }
        .breadcrumb span {
            margin: 0 8px;
            opacity: 0.6;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2.5rem 0;
        }
        .article-content {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--gray);
            color: #666;
            font-size: 0.95rem;
        }
        .meta-item i {
            margin-right: 6px;
            color: var(--primary);
        }
        h1 {
            color: var(--dark);
            font-size: 2.8rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        h2 {
            color: var(--primary);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--secondary);
        }
        h3 {
            color: var(--dark);
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--primary);
            background: rgba(42, 45, 122, 0.05);
            padding: 1.2rem;
            border-left: 4px solid var(--accent);
            border-radius: 0 8px 8px 0;
            margin-bottom: 2rem;
        }
        .highlight {
            background-color: rgba(255, 76, 76, 0.1);
            padding: 0.3rem 0.6rem;
            border-radius: 3px;
            font-weight: 600;
        }
        .featured-image {
            width: 100%;
            max-height: 450px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            border: 5px solid white;
            outline: 2px solid var(--gray);
        }
        .quote {
            font-style: italic;
            background: linear-gradient(to right, var(--light), white);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            position: relative;
            border-left: 5px solid var(--accent);
        }
        .quote::before {
            content: "\201C";
            font-size: 5rem;
            color: var(--primary);
            opacity: 0.3;
            position: absolute;
            top: -1.5rem;
            left: 1rem;
        }
        .quote-author {
            text-align: right;
            font-weight: bold;
            color: var(--primary);
            margin-top: 1rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            border-radius: 12px;
            padding: 1.8rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            margin-bottom: 1.5rem;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .widget h3 i {
            color: var(--secondary);
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid var(--gray);
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-input:focus {
            border-color: var(--primary);
        }
        .search-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: var(--dark);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #FFD700;
            margin: 1rem 0;
            letter-spacing: 5px;
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-form select,
        .rating-form textarea,
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 0.9rem;
            border: 2px solid var(--gray);
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .rating-form select:focus,
        .rating-form textarea:focus,
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: var(--primary);
            outline: none;
        }
        .submit-btn {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.05rem;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 0.5rem;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(42, 45, 122, 0.3);
        }
        .footer-links {
            background: var(--dark);
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.2rem;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            color: white;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }
        .web-link i {
            color: var(--accent);
        }
        .site-footer {
            background: var(--dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 2rem 0;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .copyright {
            font-size: 0.95rem;
        }
        .social-links {
            display: flex;
            gap: 1.5rem;
            font-size: 1.3rem;
        }
        .social-links a:hover {
            color: var(--secondary);
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: -1;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .main-nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--dark);
                flex-direction: column;
                padding: 1.5rem;
                text-align: center;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
                border-top: 2px solid var(--secondary);
            }
            .main-nav.active ul {
                display: flex;
            }
            .mobile-toggle {
                display: block;
            }
            .header-content {
                position: relative;
            }
            .article-content {
                padding: 1.8rem;
            }
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            .web-links-grid {
                grid-template-columns: 1fr;
            }
        }
        .btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 8px;
            font-weight: 600;
            margin: 0.5rem 0;
            border: 2px solid transparent;
        }
        .btn:hover {
            background: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(255, 76, 76, 0.3);
        }
        .tag {
            display: inline-block;
            background: var(--light);
            color: var(--primary);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
            border: 1px solid var(--gray);
        }
        .tag:hover {
            background: var(--primary);
            color: white;
        }
        .stat-box {
            display: flex;
            justify-content: space-around;
            text-align: center;
            margin: 2.5rem 0;
            padding: 1.5rem;
            background: linear-gradient(135deg, #f8f9ff 0%, #eef1ff 100%);
            border-radius: 12px;
        }
        .stat-item h4 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        .stat-item p {
            margin: 0;
            font-size: 0.95rem;
            color: #666;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            border-radius: 10px;
            overflow: hidden;
        }
        .comparison-table th,
        .comparison-table td {
            padding: 1.2rem 1rem;
            text-align: left;
            border-bottom: 1px solid var(--gray);
        }
        .comparison-table th {
            background-color: var(--primary);
            color: white;
            font-weight: 600;
        }
        .comparison-table tr:hover {
            background-color: rgba(42, 45, 122, 0.03);
        }
        .comparison-table .good {
            color: var(--accent);
            font-weight: bold;
        }
