:root {
            --primary-green: #2e8b57;
            --secondary-gold: #daa520;
            --light-cream: #f8f8f0;
            --dark-moss: #1a3c27;
            --text-dark: #333;
            --text-light: #666;
            --shadow: rgba(46, 139, 87, 0.15);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--light-cream);
            padding-top: 80px;
        }
        a {
            color: var(--primary-green);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-gold);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: white;
            box-shadow: 0 4px 12px var(--shadow);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-family: 'Georgia', serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: var(--primary-green);
            text-shadow: 1px 1px 2px var(--shadow);
            letter-spacing: 1px;
        }
        .my-logo:hover {
            color: var(--dark-moss);
            text-decoration: none;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            font-weight: 600;
            padding: 5px 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-gold);
            transition: width 0.3s;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary-green);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            background-color: #f0f5f2;
            margin-bottom: 30px;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: var(--text-light);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-bottom: 50px;
        }
        .article-content {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 6px 20px var(--shadow);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--dark-moss);
            margin-bottom: 20px;
            line-height: 1.2;
            border-bottom: 3px solid var(--secondary-gold);
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary-green);
            margin: 35px 0 20px;
            padding-left: 10px;
            border-left: 5px solid var(--secondary-gold);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--dark-moss);
            margin: 25px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--text-dark);
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 1.2em;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--text-light);
            background: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid var(--primary-green);
            margin-bottom: 30px;
        }
        .highlight {
            background-color: #fffacd;
            padding: 2px 5px;
            border-radius: 3px;
            font-weight: 600;
        }
        .info-box {
            background: #e9f7ef;
            border: 1px solid #b1dfc7;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }
        .info-box i {
            color: var(--primary-green);
            font-size: 1.8rem;
            margin-top: 5px;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 25px 0;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border: 5px solid white;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
            margin: 25px 0;
            font-size: 0.95rem;
            color: var(--text-light);
        }
        .widget {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 4px 12px var(--shadow);
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            color: var(--primary-green);
            padding-bottom: 10px;
            border-bottom: 2px dashed #eee;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-btn {
            background: var(--primary-green);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: var(--dark-moss);
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dotted #eee;
        }
        .related-links li:last-child {
            border-bottom: none;
        }
        .user-interaction {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px solid #eee;
        }
        .rating-widget {
            text-align: center;
            margin-bottom: 40px;
        }
        .stars {
            font-size: 2.5rem;
            color: #ddd;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--secondary-gold);
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 15px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-family: inherit;
        }
        .submit-btn {
            background: linear-gradient(to right, var(--primary-green), var(--dark-moss));
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }
        .site-footer {
            background: var(--dark-moss);
            color: white;
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            margin-bottom: 15px;
            color: white;
        }
        friend-link {
            display: block;
            margin: 8px 0;
            color: #b1dfc7;
        }
        friend-link:hover {
            color: var(--secondary-gold);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #2a4a3a;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: white;
                box-shadow: 0 10px 15px var(--shadow);
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease;
            }
            .main-nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .main-nav ul {
                flex-direction: column;
                padding: 20px;
                gap: 0;
            }
            .main-nav li {
                border-bottom: 1px solid #eee;
            }
            .main-nav a {
                display: block;
                padding: 15px 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            .article-content {
                padding: 25px;
            }
            .header-container {
                padding: 12px 20px;
            }
        }
