:root {
            --primary: #2c3e50;
            --secondary: #3498db;
            --accent: #e74c3c;
            --light: #ecf0f1;
            --dark: #1a252f;
            --success: #27ae60;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --radius: 8px;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--primary);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a:hover {
            color: var(--light);
        }
        .logo i {
            color: var(--secondary);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
        }
        .desktop-nav a:hover,
        .desktop-nav a.active {
            background-color: var(--secondary);
            color: white;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--dark);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            padding: 1rem;
            border-bottom: 1px solid #34495e;
        }
        .mobile-nav a:hover {
            background-color: var(--secondary);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: var(--light);
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin: 0 10px;
            color: #7f8c8d;
        }
        .breadcrumb a {
            color: #555;
        }
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 3rem 0;
            text-align: center;
            margin-bottom: 2rem;
            border-radius: 0 0 var(--radius) var(--radius);
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }
        .search-box {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
        }
        .search-box input {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: var(--radius);
            font-size: 1rem;
        }
        .search-box button {
            background-color: var(--accent);
            color: white;
            border: none;
            border-radius: var(--radius);
            padding: 0 2rem;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-box button:hover {
            background-color: #c0392b;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            margin: 2rem 0;
        }
        article {
            background: white;
            padding: 2rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        article h2, article h3 {
            color: var(--primary);
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--light);
        }
        article h2 {
            font-size: 2rem;
        }
        article h3 {
            font-size: 1.5rem;
        }
        article p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        article strong {
            color: var(--dark);
            font-weight: 700;
        }
        article em {
            background-color: #fffacd;
            font-style: italic;
            padding: 0 2px;
        }
        .highlight-box {
            background-color: #e8f4fc;
            border-left: 5px solid var(--secondary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .image-container {
            margin: 2rem 0;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .image-container figcaption {
            font-size: 0.9rem;
            color: #666;
            margin-top: 0.5rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #ffffff, #f0f0f0);
            padding: 1.5rem;
            border-radius: var(--radius);
            text-align: center;
            box-shadow: var(--shadow);
            border-top: 4px solid var(--secondary);
        }
        .stat-card h4 {
            color: var(--primary);
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }
        aside {
            background: white;
            padding: 1.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 100px;
        }
        aside h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--light);
        }
        .rating-widget {
            text-align: center;
            padding: 1rem;
            border: 2px dashed var(--secondary);
            border-radius: var(--radius);
            margin-bottom: 2rem;
        }
        .stars {
            font-size: 1.8rem;
            color: #ffc107;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars span {
            transition: var(--transition);
        }
        .stars span:hover,
        .stars span.active {
            transform: scale(1.2);
        }
        .rating-widget button {
            background-color: var(--success);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: var(--radius);
            cursor: pointer;
            font-weight: bold;
            width: 100%;
            margin-top: 1rem;
            transition: var(--transition);
        }
        .rating-widget button:hover {
            background-color: #219653;
        }
        .comments-section textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid #ddd;
            border-radius: var(--radius);
            margin-bottom: 1rem;
            resize: vertical;
            min-height: 100px;
        }
        .comments-section button {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: var(--radius);
            cursor: pointer;
            font-weight: bold;
            width: 100%;
            transition: var(--transition);
        }
        .comments-section button:hover {
            background-color: #2980b9;
        }
        .comment-list {
            margin-top: 2rem;
        }
        .comment {
            background-color: #f8f9fa;
            padding: 1rem;
            border-radius: var(--radius);
            margin-bottom: 1rem;
            border-left: 4px solid var(--secondary);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            color: #666;
        }
        .web-links {
            background-color: var(--light);
            padding: 2rem 0;
            margin-top: 3rem;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .web-link {
            background: white;
            padding: 1rem;
            border-radius: var(--radius);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        .web-link a {
            color: var(--primary);
            font-weight: 600;
            display: block;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: var(--secondary);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 0.8rem;
        }
        .footer-section a {
            color: #bbb;
        }
        .footer-section a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #34495e;
            color: #95a5a6;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .footer-content {
                flex-direction: column;
            }
        }
        @media (max-width: 480px) {
            .search-box {
                flex-direction: column;
            }
            .search-box button {
                padding: 15px;
            }
        }
