        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #2a4d3a;
            --primary-medium: #3a6b4f;
            --primary-light: #e9f4ee;
            --accent-warm: #d17a2a;
            --accent-cool: #5a7c9c;
            --text-dark: #222;
            --text-medium: #444;
            --text-light: #666;
            --bg-light: #f8f9fa;
            --border-light: #ddd;
            --shadow: rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: var(--primary-medium);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-warm);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul, ol {
            padding-left: 1.5em;
            margin: 1em 0;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .italic { font-style: italic; }
        .highlight {
            background-color: rgba(210, 122, 42, 0.1);
            padding: 0.2em 0.4em;
            border-radius: 3px;
        }
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .site-header {
            background-color: white;
            box-shadow: 0 2px 15px var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid var(--border-light);
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary-dark);
            text-transform: uppercase;
            letter-spacing: -1px;
        }
        .my-logo span {
            color: var(--accent-warm);
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--primary-dark);
            cursor: pointer;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            color: var(--text-medium);
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: var(--primary-dark);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--accent-warm);
            transition: var(--transition);
        }
        .main-nav a:hover::after,
        .main-nav a.active::after {
            width: 100%;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-light);
            background-color: rgba(42, 77, 58, 0.03);
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--primary-medium);
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px var(--shadow);
        }
        article h1 {
            font-size: 2.8rem;
            line-height: 1.2;
            color: var(--primary-dark);
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--primary-light);
        }
        article h2 {
            font-size: 2rem;
            color: var(--primary-medium);
            margin: 2.5rem 0 1rem;
            padding-top: 1rem;
            border-top: 1px solid var(--border-light);
        }
        article h3 {
            font-size: 1.5rem;
            color: var(--accent-cool);
            margin: 2rem 0 0.8rem;
        }
        article h4 {
            font-size: 1.2rem;
            color: var(--text-medium);
            margin: 1.5rem 0 0.8rem;
        }
        article p {
            margin-bottom: 1.2rem;
            text-align: justify;
            hyphens: auto;
        }
        article > p:first-of-type {
            font-size: 1.2rem;
            color: var(--text-medium);
            line-height: 1.8;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border-light);
        }
        .last-updated {
            background-color: var(--primary-light);
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .hero-img {
            width: 100%;
            border-radius: 8px;
            margin: 2rem 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border: 1px solid var(--border-light);
        }
        .pull-quote {
            float: right;
            width: 45%;
            margin: 1rem 0 1rem 2rem;
            padding: 1.5rem;
            background-color: var(--primary-light);
            border-left: 5px solid var(--accent-warm);
            font-style: italic;
            color: var(--text-medium);
            border-radius: 0 8px 8px 0;
        }
        @media (max-width: 768px) {
            .pull-quote {
                float: none;
                width: 100%;
                margin: 1.5rem 0;
            }
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px var(--shadow);
        }
        .widget h3 {
            font-size: 1.3rem;
            color: var(--primary-dark);
            margin-bottom: 1.2rem;
            padding-bottom: 0.7rem;
            border-bottom: 1px solid var(--border-light);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem;
            border: 1px solid var(--border-light);
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary-medium);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: var(--primary-dark);
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-widget label {
            font-weight: 600;
            color: var(--text-medium);
        }
        .rating-widget select,
        .rating-widget textarea,
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid var(--border-light);
            border-radius: 5px;
            font-size: 1rem;
        }
        .rating-widget button,
        .comment-form button {
            background-color: var(--accent-warm);
            color: white;
            border: none;
            padding: 0.9rem 1.5rem;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .rating-widget button:hover,
        .comment-form button:hover {
            background-color: #b8651f;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.5rem;
            color: #ffc107;
            margin: 0.5rem 0;
        }
        .quick-links ul {
            list-style: none;
            padding-left: 0;
        }
        .quick-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed var(--border-light);
        }
        .quick-links a {
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }
        .quick-links i {
            color: var(--primary-medium);
        }
        .site-footer {
            background-color: var(--primary-dark);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: #fff;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background-color: rgba(255,255,255,0.05);
            padding: 1.5rem;
            border-radius: 5px;
            margin-top: 1rem;
        }
        friend-link a {
            color: #a3d9b1;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: white;
                box-shadow: 0 10px 15px var(--shadow);
                padding: 1rem;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
            }
            .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 var(--border-light);
            }
            .main-nav a {
                display: block;
                padding: 1rem 0;
            }
            .header-top {
                padding: 0.8rem 0;
            }
            .my-logo {
                font-size: 1.8rem;
            }
            article {
                padding: 1.5rem;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.7rem;
            }
        }
