        * { 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: #fefefe;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        img { max-width: 100%; height: auto; display: block; }
        .site-header {
            background: linear-gradient(135deg, #1a3c34 0%, #2d5b52 100%);
            color: #fff;
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            padding: 0 1rem;
        }
        .logo a {
            color: #e8d9b0;
            font-size: 2.2rem;
            font-weight: 800;
            text-decoration: none;
            font-family: Georgia, serif;
            letter-spacing: 1px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }
        .logo a:hover { color: #fff; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #e8d9b0;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background-color: #e8d9b0;
            color: #1a3c34;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #e8d9b0;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            padding: 1rem 1rem 0.5rem;
            font-size: 0.9rem;
            background-color: #f5f1e6;
            border-radius: 0 0 8px 8px;
            margin-bottom: 1.5rem;
        }
        .breadcrumb a {
            color: #2d5b52;
            text-decoration: none;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb span { color: #777; }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-wrapper { grid-template-columns: 1fr; }
        }
        article {
            background: #fff;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.05);
        }
        .article-header {
            border-bottom: 3px solid #e8d9b0;
            padding-bottom: 1.5rem;
            margin-bottom: 2rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #1a3c34;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: #2d5b52;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #e8d9b0;
        }
        h3 {
            font-size: 1.6rem;
            color: #3a7a6d;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #f9f5eb;
            border-left: 5px solid #e8d9b0;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .feature-img {
            width: 100%;
            margin: 2.5rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        .feature-img img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        aside {
            background: #f9f5eb;
            padding: 1.8rem;
            border-radius: 12px;
            align-self: start;
            position: sticky;
            top: 140px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            color: #1a3c34;
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #e8d9b0;
        }
        .search-box, .comment-form, .rating-form {
            background: #fff;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #444;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #2d5b52;
            outline: none;
            box-shadow: 0 0 0 3px rgba(45, 91, 82, 0.1);
        }
        button, .btn {
            background: linear-gradient(to right, #2d5b52, #3a7a6d);
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            text-align: center;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, #1a3c34, #2d5b52);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(0,0,0,0.1);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star.active, .star:hover {
            color: #ffc107;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            margin: 3rem 0 2rem;
            padding: 2rem;
            background: #f5f1e6;
            border-radius: 12px;
        }
        @media (max-width: 768px) {
            .footer-links { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 480px) {
            .footer-links { grid-template-columns: 1fr; }
        }
        .web-link a {
            color: #2d5b52;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 0;
            display: inline-block;
            border-bottom: 1px dotted transparent;
            transition: all 0.3s;
        }
        .web-link a:hover {
            color: #1a3c34;
            border-bottom-color: #1a3c34;
            padding-left: 0.5rem;
        }
        .site-footer {
            background-color: #1a3c34;
            color: #e8d9b0;
            padding: 2.5rem 1rem;
            text-align: center;
            border-radius: 12px 12px 0 0;
            margin-top: 3rem;
        }
        .copyright {
            margin-top: 1.5rem;
            font-size: 0.9rem;
            color: #b8c7c4;
            border-top: 1px solid #2d5b52;
            padding-top: 1.5rem;
        }
        @media (max-width: 768px) {
            .main-nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #2d5b52;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-radius: 0 0 12px 12px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger { display: block; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.4rem; }
            article, aside { padding: 1.5rem; }
        }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .strong { font-weight: 800; color: #1a3c34; }
        .line-break { height: 1px; background: linear-gradient(to right, transparent, #e8d9b0, transparent); margin: 2.5rem 0; }
