        * { 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: #f8f5f0;
            background-image: linear-gradient(to bottom, #f8f5f0 0%, #e8e2d6 100%);
            max-width: 1600px;
            margin: 0 auto;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-family: Georgia, 'Times New Roman', Times, serif; color: #2c5530; margin-bottom: 1rem; line-height: 1.3; }
        h1 { font-size: 2.8rem; margin-top: 1.5rem; border-bottom: 3px solid #b8860b; padding-bottom: 0.5rem; }
        h2 { font-size: 2.2rem; margin-top: 2.5rem; padding-left: 0.75rem; border-left: 5px solid #b8860b; }
        h3 { font-size: 1.8rem; margin-top: 2rem; color: #5a3921; }
        p { margin-bottom: 1.5rem; font-size: 1.125rem; }
        .lead { font-size: 1.3rem; font-weight: 300; color: #555; }
        .highlight { background-color: #fff9db; padding: 0.2rem 0.5rem; border-radius: 3px; }
        .emoji { font-size: 1.2em; margin-right: 0.3rem; }
        .container { width: 95%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        section { padding: 3rem 0; }
        .section-alt { background-color: rgba(255, 255, 255, 0.7); border-radius: 10px; padding: 2.5rem; margin: 2rem 0; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
        .site-header {
            background-color: #2c5530;
            color: #fff;
            padding: 1rem 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;
        }
        .logo a {
            font-family: Georgia, serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: #f0d378;
            text-decoration: none;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        .logo i { margin-right: 10px; color: #b8860b; }
        .main-nav ul {
            display: flex;
            list-style: none;
        }
        .main-nav li { margin-left: 2rem; }
        .main-nav a {
            color: #e8e2d6;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
            transition: color 0.3s;
        }
        .main-nav a:hover { color: #f0d378; }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #f0d378;
            transition: width 0.3s;
        }
        .main-nav a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f0d378;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e8e2d6;
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: #b8860b;
        }
        .breadcrumb a { color: #2c5530; text-decoration: none; }
        .breadcrumb a:hover { text-decoration: underline; }
        .search-module {
            background: #fff;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 2rem 0;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 1rem auto 0;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid #b8860b;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
        }
        .search-btn {
            background-color: #2c5530;
            color: white;
            border: none;
            padding: 0 2rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-size: 1rem;
            transition: background-color 0.3s;
        }
        .search-btn:hover { background-color: #1e3a23; }
        .featured-image {
            margin: 2.5rem 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border: 8px solid #fff;
        }
        .pull-quote {
            font-size: 1.5rem;
            font-style: italic;
            color: #5a3921;
            border-left: 4px solid #b8860b;
            padding-left: 2rem;
            margin: 2.5rem 2rem;
            line-height: 1.6;
        }
        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .info-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-top: 5px solid #2c5530;
        }
        .interaction-module {
            background: white;
            padding: 2.5rem;
            border-radius: 10px;
            margin: 3rem 0;
            border: 1px solid #ddd;
        }
        .rating {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        .stars {
            color: #f0d378;
            font-size: 1.8rem;
            margin-right: 1rem;
        }
        .stars i { cursor: pointer; transition: transform 0.2s; }
        .stars i:hover { transform: scale(1.2); }
        .comment-form, .rating-form {
            display: grid;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 0.9rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-control:focus {
            border-color: #b8860b;
            outline: none;
        }
        .submit-btn {
            background-color: #2c5530;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.1rem;
            justify-self: start;
            transition: background-color 0.3s;
        }
        .submit-btn:hover { background-color: #1e3a23; }
        .longtail-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
            padding: 2.5rem 0;
            background-color: #e8e2d6;
            margin-top: 3rem;
        }
        .web-link {
            background: white;
            padding: 1rem 1.8rem;
            border-radius: 50px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        .web-link a {
            color: #2c5530;
            text-decoration: none;
            font-weight: 500;
            white-space: nowrap;
        }
        .web-link a:hover { text-decoration: underline; color: #b8860b; }
        .site-footer {
            background-color: #2c5530;
            color: #e8e2d6;
            padding: 3rem 0 1.5rem;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-logo { font-size: 1.8rem; color: #f0d378; margin-bottom: 1rem; }
        .footer-nav ul { list-style: none; }
        .footer-nav li { margin-bottom: 0.8rem; }
        .footer-nav a {
            color: #c0b7a0;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-nav a:hover { color: #f0d378; }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #5a7c5f;
            color: #c0b7a0;
            font-size: 0.9rem;
            width: 100%;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            .content-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #2c5530;
                padding: 1rem 0;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            .main-nav.active ul { display: flex; }
            .main-nav li { margin: 0; text-align: center; padding: 0.8rem 0; border-bottom: 1px solid #3e6b45; }
            .hamburger { display: block; }
            .search-form { flex-direction: column; }
            .search-input { border-radius: 50px; margin-bottom: 1rem; }
            .search-btn { border-radius: 50px; padding: 0.9rem; }
            .footer-container { flex-direction: column; }
        }
