:root {
            --primary: #00843D;
            --secondary: #F4C300;
            --accent: #002395;
            --dark: #1a1a1a;
            --light: #f8f9fa;
            --gray: #6c757d;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #fff;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark) 0%, var(--accent) 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .logo a {
            color: white;
            text-decoration: none;
            font-size: 1.8rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: var(--secondary);
        }
        .search-form {
            display: flex;
            width: 300px;
        }
        .search-form input {
            flex: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-form button {
            background: var(--secondary);
            color: var(--dark);
            border: none;
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: #ffd700;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
            margin-top: 10px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 0;
            position: relative;
            transition: var(--transition);
        }
        nav a:hover, nav a.active {
            color: var(--secondary);
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s;
        }
        nav a:hover::after {
            width: 100%;
        }
        .breadcrumb {
            padding: 15px 0;
            background: #f1f1f1;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 10px;
            color: var(--gray);
        }
        .breadcrumb a {
            color: var(--accent);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background: white;
            border-radius: 8px;
            overflow: hidden;
        }
        .article-header {
            margin-bottom: 30px;
        }
        h1 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            gap: 20px;
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        .featured-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
        }
        .content-section {
            margin-bottom: 40px;
        }
        h2 {
            font-size: 1.8rem;
            color: var(--accent);
            margin: 30px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }
        h3 {
            font-size: 1.4rem;
            color: var(--primary);
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background: #fff9e6;
            border-left: 4px solid var(--secondary);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-box {
            background: #f0f8ff;
            border: 1px solid #d1e7ff;
            border-radius: 8px;
            padding: 20px;
            margin: 25px 0;
        }
        .table-responsive {
            overflow-x: auto;
            margin: 25px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
        }
        th, td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        th {
            background: var(--primary);
            color: white;
        }
        tr:hover {
            background: #f5f5f5;
        }
        .cta-link {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 10px 20px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            margin: 10px 0;
            transition: var(--transition);
        }
        .cta-link:hover {
            background: #006b30;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,132,61,0.2);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            margin-top: 5px;
            font-size: 0.9rem;
        }
        aside {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 8px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            font-size: 1.2rem;
            color: var(--dark);
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #ddd;
        }
        .quick-links ul {
            list-style: none;
        }
        .quick-links li {
            margin-bottom: 10px;
        }
        .quick-links a {
            color: var(--accent);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 10px;
            border-radius: 4px;
            transition: var(--transition);
        }
        .quick-links a:hover {
            background: #e9ecef;
            padding-left: 15px;
        }
        .interactive-section {
            background: white;
            border-radius: 8px;
            padding: 25px;
            margin: 40px 0;
            box-shadow: var(--shadow);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .star-rating {
            display: flex;
            gap: 5px;
            margin: 10px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffc107;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-group label {
            font-weight: 600;
        }
        .form-group input, .form-group textarea, .form-group select {
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-group input:focus, .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0,132,61,0.1);
        }
        .btn-submit {
            background: var(--accent);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            align-self: flex-start;
        }
        .btn-submit:hover {
            background: #001a66;
        }
        .footer-links {
            background: #f1f1f1;
            padding: 40px 0;
        }
        .web-link {
            display: inline-block;
            margin: 8px 15px 8px 0;
            padding: 8px 15px;
            background: white;
            border-radius: 4px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 500;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 40px 0 20px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 15px;
        }
        .footer-logo span {
            color: var(--secondary);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                width: 100%;
                margin-top: 15px;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                margin-top: 15px;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 0;
            }
            nav li {
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            nav a {
                display: block;
                padding: 12px 0;
            }
            h1 {
                font-size: 2rem;
            }
            .featured-img {
                height: 250px;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        .text-center { text-align: center; }
        .mb-30 { margin-bottom: 30px; }
        .mt-30 { margin-top: 30px; }
        .emoji { font-size: 1.2em; }
        .keyword { color: var(--accent); font-weight: 600; }
        strong { color: var(--dark); }
