:root {
            --primary-brown: #8B4513;
            --secondary-green: #556B2F;
            --accent-red: #B22222;
            --light-cream: #FDF5E6;
            --dark-forest: #2F4F4F;
            --shadow: rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        * {
            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: var(--light-cream);
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-brown);
            text-decoration: none;
            transition: var(--transition);
            border-bottom: 1px dotted transparent;
        }
        a:hover {
            color: var(--accent-red);
            border-bottom-color: var(--accent-red);
        }
        .container {
            width: 95%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .site-header {
            background: linear-gradient(to right, var(--dark-forest), var(--secondary-green));
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Georgia', serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: #FFD700;
            text-shadow: 2px 2px 4px #000;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            text-shadow: 2px 2px 6px #000;
            transform: scale(1.02);
        }
        .breadcrumb {
            padding: 0.8rem 0;
            background-color: #e9ecef;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--primary-brown);
        }
        .breadcrumb a:hover {
            color: var(--accent-red);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .main-nav a {
            color: white;
            font-weight: 500;
            padding: 0.5rem 0.3rem;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: #FFD700;
            border-bottom-color: #FFD700;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .hero {
            background: linear-gradient(rgba(47, 79, 79, 0.85), rgba(85, 107, 47, 0.9)), url('https://images.unsplash.com/photo-1635070041078-e363dbe005cb?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            text-align: center;
            padding: 4rem 1rem;
            margin-bottom: 2rem;
            border-radius: 0 0 10px 10px;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 5px #000;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 1.5rem;
        }
        .search-box {
            max-width: 600px;
            margin: 2rem auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .search-box input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1rem;
        }
        .search-box button {
            background-color: var(--accent-red);
            color: white;
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-box button:hover {
            background-color: #8B0000;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        main article {
            background: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px var(--shadow);
            margin-bottom: 2rem;
        }
        h1, h2, h3, h4 {
            color: var(--dark-forest);
            margin-top: 1.8rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 { font-size: 2.8rem; }
        h2 { font-size: 2.2rem; border-bottom: 3px solid var(--secondary-green); padding-bottom: 0.5rem; }
        h3 { font-size: 1.8rem; color: var(--primary-brown); }
        h4 { font-size: 1.4rem; color: var(--secondary-green); }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--dark-forest);
            background-color: #f8f9fa;
            padding: 1.5rem;
            border-left: 5px solid var(--accent-red);
            border-radius: 5px;
            margin: 2rem 0;
        }
        .highlight {
            background-color: #fffacd;
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: bold;
        }
        .img-container {
            text-align: center;
            margin: 2.5rem 0;
        }
        .feature-img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: var(--transition);
        }
        .feature-img:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.2);
        }
        .caption {
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.7rem;
        }
        blockquote {
            border-left: 4px solid var(--primary-brown);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #555;
            background-color: #f9f9f9;
            padding-top: 1rem;
            padding-bottom: 1rem;
            border-radius: 0 5px 5px 0;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #777;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px dashed #ccc;
        }
        aside {
            background: white;
            padding: 1.8rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eee;
        }
        .rating-widget input, .comment-widget textarea, .comment-widget input {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-family: inherit;
        }
        .rating-widget button, .comment-widget button {
            width: 100%;
            padding: 0.9rem;
            background-color: var(--secondary-green);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            transition: var(--transition);
        }
        .rating-widget button:hover, .comment-widget button:hover {
            background-color: var(--dark-forest);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #FFD700;
            cursor: pointer;
        }
        .toc ul {
            list-style: none;
            margin-left: 0;
        }
        .toc a {
            display: block;
            padding: 0.5rem 0;
            border-bottom: 1px dotted #eee;
        }
        .toc a:hover {
            background-color: #f5f5f5;
            padding-left: 0.5rem;
        }
        .site-footer {
            background-color: var(--dark-forest);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-widget h4 {
            color: #FFD700;
            border-bottom: 2px solid var(--secondary-green);
            padding-bottom: 0.7rem;
            margin-bottom: 1.5rem;
        }
        .footer-widget ul {
            list-style: none;
            margin-left: 0;
        }
        .footer-widget li {
            margin-bottom: 0.8rem;
        }
        .footer-widget a {
            color: #ddd;
        }
        .footer-widget a:hover {
            color: #FFD700;
        }
        friend-link {
            display: block;
            background-color: rgba(255,255,255,0.1);
            padding: 1rem;
            border-radius: 5px;
            margin-bottom: 1rem;
            text-align: center;
        }
        friend-link a {
            color: #90EE90;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #555;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 70px);
                background-color: var(--dark-forest);
                transition: left 0.4s ease;
                padding: 2rem;
                box-shadow: 5px 0 15px rgba(0,0,0,0.2);
                z-index: 999;
            }
            .main-nav.active {
                left: 0;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1.5rem;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .content-wrapper {
                gap: 2rem;
            }
            main article {
                padding: 1.8rem;
            }
            aside {
                position: static;
                top: auto;
            }
        }
