:root {
            --primary-color: #2c3e50;
            --secondary-color: #e74c3c;
            --accent-color: #3498db;
            --text-color: #333;
            --light-bg: #f8f9fa;
            --dark-bg: #2c3e50;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
            --border-radius: 8px;
            --max-width: 1200px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            color: var(--text-color);
            background-color: var(--light-bg);
            line-height: 1.7;
            font-size: 18px;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--primary-color);
            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;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--secondary-color);
        }
        nav ul {
            display: flex;
            gap: 2rem;
        }
        nav a {
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
            font-weight: 600;
        }
        nav a:hover {
            background-color: rgba(255,255,255,0.1);
            color: var(--secondary-color);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background-color: #ecf0f1;
            padding: 1rem 0;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: #7f8c8d;
        }
        .breadcrumb a:hover {
            color: var(--accent-color);
        }
        main {
            padding: 2rem 0;
            min-height: 80vh;
        }
        article {
            background-color: white;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--secondary-color);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--accent-color);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fff3cd;
            border-left: 5px solid #ffc107;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .feature-card {
            background: var(--light-bg);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
        }
        .feature-card i {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }
        .article-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: var(--border-radius);
            margin: 2rem auto;
            box-shadow: var(--shadow);
        }
        .form-section {
            background-color: var(--light-bg);
            padding: 2rem;
            border-radius: var(--border-radius);
            margin: 3rem 0;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #ddd;
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            border-color: var(--accent-color);
            outline: none;
        }
        button, .btn {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: var(--transition);
            display: inline-block;
        }
        button:hover, .btn:hover {
            background-color: #c0392b;
            transform: scale(1.05);
        }
        .rating {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .rating i {
            color: #ffd700;
            cursor: pointer;
            font-size: 1.8rem;
        }
        .rating i:hover {
            transform: scale(1.2);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }
        .web-link {
            background-color: white;
            padding: 1.2rem;
            border-radius: var(--border-radius);
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .web-link:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transform: translateY(-3px);
        }
        .web-link a {
            color: var(--accent-color);
            font-weight: 600;
        }
        .web-link a:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }
        footer {
            background-color: var(--dark-bg);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--secondary-color);
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #4a5f7a;
            font-size: 0.9rem;
            color: #bdc3c7;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            nav ul {
                gap: 1rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: var(--primary-color);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                box-shadow: var(--shadow);
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                width: 100%;
            }
            nav a {
                display: block;
                padding: 1rem;
                border-radius: 5px;
            }
            article {
                padding: 1.5rem;
            }
            .feature-list {
                grid-template-columns: 1fr;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
