        * { 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: linear-gradient(135deg, #f9f7f0 0%, #e8f4f8 100%);
            min-height: 100vh;
        }
        a { color: #2a6e3f; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #1a472a; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        .site-header {
            background: #1a472a;
            color: #fff;
            padding: 1rem 2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .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.3);
        }
        .my-logo a { color: inherit; text-decoration: none; }
        .my-logo a:hover { color: #fff; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .main-nav a {
            color: #ffd166;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover { color: #fff; }
        .main-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: #ffd166;
            bottom: 0;
            left: 0;
            transition: width 0.3s;
        }
        .main-nav a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ffd166;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background: #e9f5eb;
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
            border-bottom: 1px solid #cde0d5;
        }
        .breadcrumb ul {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            list-style: none;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after { content: '›'; margin-left: 0.5rem; }
        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .container { grid-template-columns: 1fr; }
        }
        article {
            background: #fff;
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        h1 {
            color: #1a472a;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid #ffd166;
            padding-bottom: 0.5rem;
        }
        h2 {
            color: #2a6e3f;
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-top: 1rem;
        }
        h3 {
            color: #3a8a4f;
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: #4aa65f;
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: #555;
            background: #f0f9f3;
            padding: 1.2rem;
            border-left: 4px solid #2a6e3f;
            border-radius: 0 8px 8px 0;
            margin-bottom: 2rem;
        }
        .highlight {
            background: linear-gradient(120deg, #ffd16622 0%, #ffd16644 100%);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px dashed #2a6e3f;
            margin: 1.5rem 0;
        }
        .emoji { font-size: 1.2em; margin-right: 0.3rem; }
        .float-img {
            float: right;
            margin: 0 0 1.5rem 1.5rem;
            max-width: 45%;
            border-radius: 10px;
            border: 5px solid #e9f5eb;
        }
        @media (max-width: 768px) {
            .float-img { float: none; max-width: 100%; margin: 1rem 0; }
        }
        .clearfix::after {
            content: "";
            clear: both;
            display: table;
        }
        aside {
            background: #fff;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            align-self: start;
            position: sticky;
            top: 140px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            color: #1a472a;
            font-size: 1.4rem;
            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;
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid #cde0d5;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #2a6e3f;
            box-shadow: 0 0 0 3px rgba(42, 110, 63, 0.1);
        }
        button, .btn {
            background: linear-gradient(to bottom, #2a6e3f, #1a472a);
            color: white;
            border: none;
            padding: 0.9rem 1.5rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to bottom, #3a8a4f, #2a6e3f);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
        }
        .star-rating input { display: none; }
        .star-rating label {
            color: #ddd;
            font-size: 1.8rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label { color: #ffd166; }
        .comment {
            background: #f9f9f9;
            padding: 1.2rem;
            border-radius: 8px;
            margin-bottom: 1.2rem;
            border-left: 4px solid #2a6e3f;
        }
        .comment-author { font-weight: bold; color: #1a472a; }
        .comment-date { font-size: 0.9rem; color: #777; }
        footer {
            background: #1a472a;
            color: #ffd166;
            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: 2rem; font-weight: bold; margin-bottom: 1rem; }
        .footer-links h3, .friend-links h3 {
            color: #fff;
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        .footer-links ul, .friend-links ul {
            list-style: none;
        }
        .footer-links li, .friend-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a, .friend-links a {
            color: #cde0d5;
        }
        .footer-links a:hover, .friend-links a:hover {
            color: #ffd166;
        }
        friend-link {
            display: block;
            padding: 0.5rem 0;
            border-bottom: 1px dotted #3a8a4f;
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid #3a8a4f;
            color: #cde0d5;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container { flex-direction: column; align-items: flex-start; gap: 1rem; }
            .main-nav { width: 100%; }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
                display: none;
            }
            .main-nav.active ul {
                display: flex;
                background: #2a6e3f;
                padding: 1rem;
                border-radius: 8px;
            }
            .hamburger { display: block; }
            .container { padding: 0 1rem; }
            article, aside { padding: 1.5rem; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
        }
