        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-color: #1a365d;
            --secondary-color: #e53e3e;
            --accent-color: #38b2ac;
            --light-color: #f7fafc;
            --dark-color: #2d3748;
            --text-color: #2d3748;
            --border-color: #e2e8f0;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.5rem;
            border-left: 5px solid var(--secondary-color);
            padding-left: 1rem;
            margin-top: 2rem;
        }
        h2 {
            font-size: 2rem;
            margin-top: 3rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 2rem;
            color: var(--accent-color);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-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: 1rem 0;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--primary-color);
            display: flex;
            align-items: center;
        }
        .logo span {
            color: var(--secondary-color);
        }
        .logo i {
            margin-right: 10px;
            color: var(--accent-color);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
        }
        .main-nav li {
            margin-left: 2rem;
        }
        .main-nav a {
            color: var(--dark-color);
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover {
            color: var(--secondary-color);
            text-decoration: none;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: var(--transition);
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        .breadcrumb {
            background-color: var(--light-color);
            padding: 1rem 0;
            margin-bottom: 2rem;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 0.5rem;
            font-size: 0.9rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: var(--dark-color);
        }
        .breadcrumb a {
            color: var(--dark-color);
        }
        .breadcrumb a:hover {
            color: var(--secondary-color);
        }
        .search-form {
            display: flex;
            margin: 2rem 0 3rem;
            max-width: 600px;
        }
        .search-form input {
            flex: 1;
            padding: 0.75rem 1rem;
            border: 2px solid var(--border-color);
            border-right: none;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-form input:focus {
            outline: none;
            border-color: var(--accent-color);
        }
        .search-form button {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #c53030;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        .article-content {
            background-color: white;
            padding: 2.5rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        .sidebar {
            background-color: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        .featured-image {
            margin: 2rem 0;
            text-align: center;
        }
        .featured-image img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }
        .featured-image img:hover {
            transform: scale(1.01);
        }
        .image-caption {
            font-style: italic;
            color: #718096;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--primary-color);
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        .highlight {
            background-color: #fffaf0;
            border-left: 4px solid var(--secondary-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 4px 4px 0;
        }
        .key-points {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .point-card {
            background-color: var(--light-color);
            padding: 1.5rem;
            border-radius: 8px;
            border-top: 4px solid var(--accent-color);
            transition: var(--transition);
        }
        .point-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .point-card h4 {
            display: flex;
            align-items: center;
            margin-bottom: 0.75rem;
        }
        .point-card i {
            margin-right: 10px;
            color: var(--accent-color);
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }
        .data-table th {
            background-color: var(--primary-color);
            color: white;
            padding: 1rem;
            text-align: left;
        }
        .data-table td {
            padding: 1rem;
            border-bottom: 1px solid var(--border-color);
        }
        .data-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        .data-table tr:hover {
            background-color: #edf2f7;
        }
        .user-interaction {
            background-color: white;
            padding: 2.5rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
            margin: 3rem 0;
        }
        .interaction-section {
            margin-bottom: 3rem;
        }
        .interaction-section h2 {
            margin-top: 0;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .rating-stars i {
            color: #e2e8f0;
            cursor: pointer;
            font-size: 1.5rem;
            transition: var(--transition);
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #f6ad55;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark-color);
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(56, 178, 172, 0.2);
        }
        .btn {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            display: inline-block;
        }
        .btn:hover {
            background-color: #c53030;
            transform: translateY(-2px);
        }
        .btn i {
            margin-right: 8px;
        }
        .site-footer {
            background-color: var(--primary-color);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #4a5568;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        .footer-links a {
            color: #cbd5e0;
        }
        .footer-links a:hover {
            color: white;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
            padding: 0.5rem;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #4a5568;
            color: #a0aec0;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            .main-nav.active {
                max-height: 300px;
                margin-top: 1rem;
            }
            .main-nav ul {
                flex-direction: column;
            }
            .main-nav li {
                margin: 0;
                border-top: 1px solid var(--border-color);
            }
            .main-nav a {
                display: block;
                padding: 1rem 0;
            }
            .key-points {
                grid-template-columns: 1fr;
            }
            .article-content {
                padding: 1.5rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                border-right: 2px solid var(--border-color);
                border-radius: 4px;
                margin-bottom: 0.5rem;
            }
            .search-form button {
                border-radius: 4px;
            }
            .user-interaction {
                padding: 1.5rem;
            }
        }
