:root {
            --primary: #0d6a3a;
            --primary-dark: #094b28;
            --secondary: #f0b400;
            --secondary-dark: #c79500;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            --transition: all 0.3s ease;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --border-radius: 8px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: #fff;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(to right, var(--primary-dark), var(--primary));
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(to right, var(--secondary), #ffde59);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            padding: 5px 0;
        }
        .my-logo:hover {
            transform: scale(1.03);
            transition: var(--transition);
        }
        nav ul {
            display: flex;
            gap: 1.5rem;
        }
        nav a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
            transition: var(--transition);
        }
        nav a:hover {
            color: var(--secondary);
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s ease;
        }
        nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background-color: var(--light-gray);
            padding: 0.8rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin: 0 10px;
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        .hero {
            background: linear-gradient(rgba(13, 106, 58, 0.85), rgba(13, 106, 58, 0.9)), url('https://images.unsplash.com/photo-1584467735871-8db9ac8d0916?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 4rem 2rem;
            border-bottom: 5px solid var(--secondary);
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        .search-bar {
            max-width: 600px;
            margin: 2rem auto 0;
            display: flex;
        }
        .search-bar input {
            flex: 1;
            padding: 0.9rem 1.2rem;
            border: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
        }
        .search-bar button {
            background: var(--secondary);
            color: var(--dark);
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-bar button:hover {
            background: var(--secondary-dark);
        }
        main {
            padding: 3rem 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        article {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .article-header {
            padding: 2rem 2rem 1rem;
            border-bottom: 1px solid var(--light-gray);
        }
        .meta {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 1rem;
            display: flex;
            gap: 1rem;
        }
        .article-content {
            padding: 2rem;
        }
        .article-content h2,
        .article-content h3,
        .article-content h4 {
            margin-top: 2rem;
            margin-bottom: 1rem;
            color: var(--primary-dark);
        }
        .article-content h2 {
            font-size: 1.8rem;
            border-left: 5px solid var(--secondary);
            padding-left: 1rem;
        }
        .article-content h3 {
            font-size: 1.5rem;
        }
        .article-content h4 {
            font-size: 1.2rem;
        }
        .article-content p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .article-content emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .highlight {
            background: linear-gradient(to right, rgba(240, 180, 0, 0.1), transparent);
            border-left: 4px solid var(--secondary);
            padding: 1.2rem;
            margin: 1.5rem 0;
            font-weight: 600;
        }
        .article-img {
            width: 100%;
            margin: 2rem 0;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
        }
        .article-img img {
            width: 100%;
            transition: var(--transition);
        }
        .article-img:hover img {
            transform: scale(1.03);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            padding: 0.5rem;
            font-size: 0.9rem;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            border-radius: var(--border-radius);
            padding: 1.5rem;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary-dark);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--light-gray);
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.5rem;
            color: var(--light-gray);
            cursor: pointer;
        }
        .stars i.active {
            color: var(--secondary);
        }
        .rating-widget button,
        .comment-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-widget button:hover,
        .comment-form button:hover {
            background: var(--primary-dark);
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid var(--light-gray);
            border-radius: var(--border-radius);
            font-family: inherit;
            resize: vertical;
            min-height: 120px;
        }
        .comment-list {
            max-height: 300px;
            overflow-y: auto;
        }
        .comment-item {
            padding: 0.8rem 0;
            border-bottom: 1px solid var(--light-gray);
        }
        .comment-author {
            font-weight: 600;
            color: var(--primary);
        }
        .comment-date {
            font-size: 0.8rem;
            color: var(--gray);
        }
        .related-links ul {
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
        }
        .related-links a {
            display: block;
            padding: 0.5rem 0;
            transition: var(--transition);
            color: var(--primary);
        }
        .related-links a:hover {
            color: var(--secondary);
            padding-left: 10px;
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 1rem;
        }
        .footer-links ul {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-links a:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 1rem;
            border-radius: var(--border-radius);
            margin: 1rem 0;
            transition: var(--transition);
        }
        friend-link:hover {
            background: rgba(255,255,255,0.1);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: var(--light-gray);
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: var(--primary-dark);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 2rem;
                transition: var(--transition);
                z-index: 999;
            }
            nav ul.active {
                left: 0;
            }
            nav ul li {
                width: 100%;
                text-align: center;
                padding: 1rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .article-header {
                padding: 1.5rem 1.5rem 1rem;
            }
            .article-content {
                padding: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .hero {
                padding: 3rem 1rem;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .search-bar {
                flex-direction: column;
            }
            .search-bar input {
                border-radius: var(--border-radius);
                margin-bottom: 10px;
            }
            .search-bar button {
                border-radius: var(--border-radius);
                padding: 0.9rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, .sidebar-widget {
            animation: fadeIn 0.6s ease-out;
        }
