* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #1a5276;
            --secondary-color: #e74c3c;
            --accent-color: #f39c12;
            --text-color: #2c3e50;
            --light-bg: #ecf0f1;
            --white: #ffffff;
            --shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-bg);
        }
        header {
            background: linear-gradient(135deg, var(--primary-color), #2980b9);
            color: var(--white);
            padding: 1rem 0;
            box-shadow: var(--shadow);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
        }
        .logo a {
            color: var(--white);
            text-decoration: none;
        }
        .logo span {
            color: var(--accent-color);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        nav a:hover {
            color: var(--accent-color);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
        }
        .breadcrumb {
            background: var(--white);
            padding: 1rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            gap: 0.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .main-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
        }
        .article-content {
            background: var(--white);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .sidebar {
            background: var(--white);
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        h1 {
            color: var(--primary-color);
            font-size: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        h2 {
            color: var(--secondary-color);
            font-size: 2rem;
            margin: 2rem 0 1rem;
            border-bottom: 2px solid var(--accent-color);
            padding-bottom: 0.5rem;
        }
        h3 {
            color: var(--primary-color);
            font-size: 1.5rem;
            margin: 1.5rem 0 1rem;
        }
        p {
            margin-bottom: 1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(120deg, var(--accent-color) 0%, var(--accent-color) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.4em;
            background-position: 0 88%;
            font-weight: bold;
        }
        .search-form {
            display: flex;
            margin-bottom: 2rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.75rem;
            border: 2px solid var(--primary-color);
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-form button {
            background: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: var(--secondary-color);
        }
        .feature-box {
            background: linear-gradient(135deg, var(--primary-color), #3498db);
            color: var(--white);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            text-align: center;
            transition: transform 0.3s;
        }
        .feature-box:hover {
            transform: translateY(-5px);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: var(--white);
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
        }
        .stat-card:hover {
            transform: scale(1.05);
        }
        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: var(--secondary-color);
        }
        .comment-section, .rating-section {
            background: var(--white);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .comment-form textarea {
            height: 100px;
            padding: 1rem;
            border: 2px solid var(--light-bg);
            border-radius: 5px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 1.5rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s;
        }
        .rating-stars input:checked ~ label,
        .rating-stars label:hover,
        .rating-stars label:hover ~ label {
            color: var(--accent-color);
        }
        .submit-btn {
            background: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }
        .submit-btn:hover {
            background: var(--secondary-color);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .web-link {
            background: var(--white);
            padding: 1rem;
            border-radius: 5px;
            text-align: center;
            box-shadow: var(--shadow);
        }
        .web-link a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
        }
        .web-link a:hover {
            color: var(--secondary-color);
        }
        footer {
            background: var(--primary-color);
            color: var(--white);
            text-align: center;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--primary-color);
                padding: 1rem;
            }
            nav ul.show {
                display: flex;
            }
            .main-content {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }
