* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #ff6b35;
            --secondary-color: #2d3047;
            --accent-color: #f7c59f;
            --text-color: #333;
            --light-bg: #f8f9fa;
            --white: #ffffff;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-bg);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--secondary-color);
            color: var(--white);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
        }
        .logo:hover {
            color: var(--accent-color);
            transition: var(--transition);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        .desktop-nav a:hover {
            background-color: var(--primary-color);
            color: var(--white);
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--secondary-color);
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 1rem;
        }
        .mobile-nav a {
            color: var(--white);
            text-decoration: none;
            display: block;
            padding: 0.5rem;
            transition: var(--transition);
        }
        .mobile-nav a:hover {
            background-color: var(--primary-color);
            border-radius: 4px;
        }
        .breadcrumb {
            background-color: var(--white);
            padding: 1rem 0;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: var(--primary-color);
        }
        .breadcrumb a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
        }
        .search-section {
            background-color: var(--white);
            padding: 2rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 0.75rem 1rem;
            border: 2px solid var(--secondary-color);
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-button {
            background-color: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: var(--transition);
            font-weight: bold;
        }
        .search-button:hover {
            background-color: var(--secondary-color);
        }
        main {
            padding: 2rem 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .article-header h1 {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            color: #666;
            font-size: 0.9rem;
        }
        .article-content {
            background-color: var(--white);
            padding: 3rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        .article-section {
            margin-bottom: 3rem;
        }
        .article-section h2 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-color);
        }
        .article-section h3 {
            color: var(--secondary-color);
            margin: 1.5rem 0 1rem 0;
        }
        .article-section p {
            margin-bottom: 1rem;
            text-align: justify;
        }
        .highlight-box {
            background-color: var(--light-bg);
            border-left: 4px solid var(--primary-color);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 4px 4px 0;
        }
        .feature-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 8px;
            margin: 2rem auto;
            display: block;
            box-shadow: var(--shadow);
        }
        .rating-section {
            background-color: var(--white);
            padding: 2rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
            text-align: center;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #ffc107;
        }
        .rating-form {
            max-width: 500px;
            margin: 0 auto;
        }
        .rating-submit {
            background-color: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: bold;
            margin-top: 1rem;
        }
        .rating-submit:hover {
            background-color: var(--secondary-color);
        }
        .comments-section {
            background-color: var(--white);
            padding: 2rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        .comment-form {
            margin-bottom: 2rem;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }
        .form-control {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        .submit-button {
            background-color: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: bold;
        }
        .submit-button:hover {
            background-color: var(--secondary-color);
        }
        .comment {
            border-bottom: 1px solid #eee;
            padding: 1.5rem 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: var(--secondary-color);
        }
        .comment-date {
            color: #666;
            font-size: 0.9rem;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .web-link {
            background-color: var(--white);
            padding: 1rem;
            border-radius: 4px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        .web-link a {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 500;
            display: block;
        }
        .web-link a:hover {
            color: var(--primary-color);
        }
        footer {
            background-color: var(--secondary-color);
            color: var(--white);
            padding: 3rem 0 1rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        .footer-links a {
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-nav-toggle {
                display: block;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .article-meta {
                flex-direction: column;
                gap: 0.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input {
                border-radius: 4px;
                margin-bottom: 0.5rem;
            }
            .search-button {
                border-radius: 4px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .article-header h1 {
                font-size: 1.75rem;
            }
            .rating-stars .star {
                font-size: 1.5rem;
            }
        }
