        * { 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.7;
            color: #333;
            background-color: #f8f9fa;
            background-image: linear-gradient(to bottom, #0a3d2f 0%, #0a3d2f 250px, #f8f9fa 250px);
            min-height: 100vh;
        }
        a { color: #0a7c5f; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #0a3d2f; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
        .site-header {
            background-color: rgba(10, 61, 47, 0.95);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Georgia', serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: #ffd166;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 1px;
        }
        .my-logo:hover { text-decoration: none; color: #ffc145; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #e9ecef;
            font-weight: 500;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            color: #ffd166;
            border-bottom-color: #ffd166;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e9ecef;
            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: #6c757d;
        }
        .breadcrumb a { color: #495057; }
        .main-content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content-area { grid-template-columns: 1fr; }
        }
        article {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        .article-header { margin-bottom: 2.5rem; }
        .article-header h1 {
            font-size: 2.8rem;
            color: #0a3d2f;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            color: #6c757d;
            font-size: 0.95rem;
            border-bottom: 1px solid #dee2e6;
            padding-bottom: 1rem;
            margin-bottom: 2rem;
        }
        .article-meta time { font-weight: 600; color: #0a7c5f; }
        article h2 {
            font-size: 2rem;
            color: #0a3d2f;
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffd166;
        }
        article h3 {
            font-size: 1.6rem;
            color: #0a7c5f;
            margin: 2.5rem 0 1rem;
        }
        article h4 {
            font-size: 1.3rem;
            color: #495057;
            margin: 2rem 0 1rem;
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        article emoji { font-size: 1.2em; margin-right: 0.3em; }
        article strong {
            color: #0a3d2f;
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-left: 5px solid #0a7c5f;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .infographic {
            float: right;
            margin: 0 0 1.5rem 2rem;
            max-width: 400px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        @media (max-width: 768px) {
            .infographic { float: none; margin: 1.5rem auto; max-width: 100%; }
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            border-radius: 12px;
            padding: 1.8rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.07);
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            color: #0a3d2f;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffd166;
        }
        .search-form,
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group { display: flex; flex-direction: column; }
        .form-group label { margin-bottom: 0.5rem; font-weight: 600; color: #495057; }
        .form-control {
            padding: 0.75rem;
            border: 1px solid #ced4da;
            border-radius: 6px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .form-control:focus {
            outline: none;
            border-color: #0a7c5f;
            box-shadow: 0 0 0 0.2rem rgba(10, 124, 95, 0.25);
        }
        textarea.form-control { min-height: 120px; resize: vertical; }
        .btn {
            background: linear-gradient(to right, #0a7c5f, #0a3d2f);
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 6px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-start;
        }
        .btn:hover {
            background: linear-gradient(to right, #0a3d2f, #0a7c5f);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(10, 61, 47, 0.3);
            text-decoration: none;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            direction: rtl; 
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star:hover ~ .star { color: #ffd166; }
        .stars input:checked ~ .star { color: #ffd166; }
        .stars input { display: none; }
        .site-footer {
            background-color: #0a3d2f;
            color: #e9ecef;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-section h4 {
            color: #ffd166;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 0.8rem; }
        .footer-links a { color: #adb5bd; }
        .footer-links a:hover { color: #ffd166; }
        friend-link {
            display: block;
            padding: 1rem;
            background: rgba(255,255,255,0.05);
            border-radius: 6px;
            margin-bottom: 1rem;
            border-left: 4px solid #0a7c5f;
        }
        friend-link a { color: #ffd166; font-weight: 600; }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #adb5bd;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: #0a3d2f;
                padding: 1rem;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.4s ease;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            .main-nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li { border-bottom: 1px solid rgba(255,255,255,0.1); }
            .main-nav a {
                display: block;
                padding: 1rem;
            }
            article { padding: 1.5rem; }
            .article-header h1 { font-size: 2.2rem; }
            article h2 { font-size: 1.8rem; }
            article h3 { font-size: 1.5rem; }
        }
