* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #4361ee;
            --secondary: #3a0ca3;
            --accent: #f72585;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --border-radius: 12px;
            --shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #fefefe;
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 1rem 2rem;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i { color: var(--accent); }
        .logo:hover { transform: scale(1.03); }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
            font-weight: 600;
            font-size: 1.05rem;
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--primary);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            box-shadow: var(--shadow);
            border-radius: 0 0 var(--border-radius) var(--border-radius);
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-weight: 600;
        }
        .nav-mobile a:hover { background-color: rgba(255, 255, 255, 0.1); }
        .breadcrumb {
            max-width: 1200px;
            margin: 1.5rem auto;
            padding: 0 2rem;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .breadcrumb a:hover { color: var(--primary); }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .container { grid-template-columns: 1fr; }
        }
        .main-content {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 2.5rem;
            box-shadow: var(--shadow);
            margin-bottom: 3rem;
        }
        .article-header {
            margin-bottom: 2.5rem;
            border-bottom: 2px solid var(--light);
            padding-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--secondary);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .meta {
            display: flex;
            gap: 1.5rem;
            color: var(--gray);
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }
        .meta i { margin-right: 5px; }
        .intro {
            font-size: 1.2rem;
            color: var(--dark);
            background-color: #f0f7ff;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            border-left: 5px solid var(--accent);
            margin-bottom: 2.5rem;
        }
        h2, h3 {
            color: var(--secondary);
            margin: 2.5rem 0 1.2rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #f0f0f0;
        }
        h2 { font-size: 2rem; }
        h3 { font-size: 1.6rem; }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #fff9e6;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            border-left: 5px solid #ffc107;
            margin: 2rem 0;
            font-weight: 600;
        }
        .solution-box {
            background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
            padding: 2rem;
            border-radius: var(--border-radius);
            margin: 2.5rem 0;
            border: 2px dashed var(--primary);
        }
        .solution-step {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.2rem;
            padding: 1rem;
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        }
        .step-num {
            background-color: var(--accent);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
        }
        .image-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .image-container img {
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin: 0 auto;
            border: 5px solid white;
        }
        .caption {
            font-style: italic;
            color: var(--gray);
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .quote {
            font-size: 1.3rem;
            color: var(--secondary);
            text-align: center;
            padding: 2rem;
            background-color: #f8f9ff;
            border-radius: var(--border-radius);
            margin: 2.5rem 0;
            font-weight: 600;
            position: relative;
        }
        .quote::before, .quote::after {
            content: '"';
            font-size: 3rem;
            color: var(--accent);
            opacity: 0.3;
            position: absolute;
        }
        .quote::before { top: 10px; left: 20px; }
        .quote::after { bottom: 10px; right: 20px; }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 1.8rem;
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 1.4rem;
            color: var(--secondary);
            margin-bottom: 1.2rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid #f0f0f0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget-title i { color: var(--accent); }
        .search-form {
            display: flex;
            margin-bottom: 1.5rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid #ddd;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
            outline: none;
        }
        .search-form input:focus { border-color: var(--primary); }
        .search-form button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-form button:hover { background-color: var(--secondary); }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffc107;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars i:hover { transform: scale(1.2); }
        .rating-form button {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            margin-top: 1rem;
            width: 100%;
            transition: var(--transition);
        }
        .rating-form button:hover { background-color: #e11570; }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: var(--border-radius);
            resize: vertical;
            min-height: 120px;
            margin-bottom: 1rem;
            font-size: 1rem;
            outline: none;
        }
        .comment-form textarea:focus { border-color: var(--primary); }
        .comment-form button {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 0.9rem 1.5rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 600;
            width: 100%;
            transition: var(--transition);
        }
        .comment-form button:hover { background-color: #2d0a8a; }
        .web-links-section {
            max-width: 1200px;
            margin: 3rem auto;
            padding: 0 2rem;
        }
        .web-links-title {
            font-size: 1.8rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
            text-align: center;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-left: 4px solid var(--primary);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border-left-color: var(--accent);
        }
        .web-link a {
            font-weight: 600;
            color: var(--dark);
            display: block;
        }
        .web-link a:hover { color: var(--primary); }
        .footer {
            background-color: var(--dark);
            color: #ddd;
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1rem;
            display: inline-block;
        }
        .footer-about {
            font-size: 1rem;
            line-height: 1.8;
        }
        .footer-links h3, .footer-social h3 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary);
            display: inline-block;
        }
        .footer-links ul li { margin-bottom: 0.8rem; }
        .footer-links a:hover { color: white; padding-left: 5px; }
        .social-icons {
            display: flex;
            gap: 1rem;
            font-size: 1.5rem;
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: #333;
            border-radius: 50%;
            color: white;
        }
        .social-icons a:hover {
            background-color: var(--primary);
            transform: scale(1.1);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container { padding: 0.5rem 1rem; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .container { padding: 0 1rem; }
            .main-content { padding: 1.5rem; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.4rem; }
            .web-links-grid { grid-template-columns: 1fr; }
            .footer { padding: 2rem 1rem 1rem; }
            .breadcrumb { padding: 0 1rem; }
        }
