        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f5f0;
            color: #333;
            line-height: 1.7;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            position: relative;
        }
        a {
            text-decoration: none;
            color: #2a6e3f;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #1e4d2b;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        h1, h2, h3, h4 {
            color: #1a472a;
            margin-bottom: 0.8em;
            line-height: 1.3;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            margin-top: 1.2em;
            border-bottom: 3px solid #d4af37;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 2em;
            padding-left: 10px;
            border-left: 5px solid #2a6e3f;
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 1.8em;
            color: #2a6e3f;
        }
        h4 {
            font-size: 1.4rem;
            margin-top: 1.5em;
            color: #3d8c55;
        }
        p {
            margin-bottom: 1.5em;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #444;
            background-color: #e9f5eb;
            padding: 20px;
            border-radius: 8px;
            margin: 2em 0;
        }
        strong {
            color: #1a472a;
            font-weight: 700;
        }
        .highlight {
            background-color: #fff9db;
            padding: 2px 6px;
            border-radius: 4px;
        }
        .container {
            width: 100%;
            padding-right: 15px;
            padding-left: 15px;
            margin-right: auto;
            margin-left: auto;
        }
        .site-header {
            background-color: #1a472a;
            color: white;
            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;
            flex-wrap: wrap;
        }
        .logo a {
            color: #d4af37;
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: 1px;
            font-family: 'Georgia', serif;
            text-decoration: none;
        }
        .logo a:hover {
            color: #f0c850;
            text-decoration: none;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 992px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #fff;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background-color: #2a6e3f;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 992px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            width: 100%;
            background-color: #1a472a;
            padding: 1rem 0;
            position: absolute;
            top: 100%;
            left: 0;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            padding: 12px 20px;
            border-bottom: 1px solid #2a6e3f;
            font-weight: 600;
        }
        .nav-mobile a:hover {
            background-color: #2a6e3f;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.95rem;
            color: #666;
        }
        .breadcrumb a {
            color: #2a6e3f;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .search-container {
            background: linear-gradient(135deg, #e9f5eb, #d1e7dd);
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem 0;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .search-container h2 {
            margin-top: 0;
            border-left: none;
            padding-left: 0;
            color: #1a472a;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 1.5rem auto 0;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid #2a6e3f;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
        }
        .search-btn {
            background-color: #2a6e3f;
            color: white;
            border: none;
            padding: 0 30px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .search-btn:hover {
            background-color: #1e4d2b;
        }
        .article-content {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.06);
            margin-bottom: 2rem;
        }
        .featured-image {
            width: 100%;
            margin: 2.5rem 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        .featured-image img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .inset-box {
            background-color: #f8f5f0;
            border-left: 5px solid #d4af37;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .inset-box h4 {
            margin-top: 0;
        }
        .link-list {
            list-style: none;
            padding: 1.5rem;
            background-color: #e9f5eb;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .link-list li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .link-list li:before {
            content: '🀄';
            position: absolute;
            left: 0;
        }
        .interactive-section {
            background-color: #f8f9fa;
            border: 2px dashed #c1d6cc;
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem 0;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            margin-top: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            font-weight: 600;
            margin-bottom: 8px;
            color: #1a472a;
        }
        .form-control {
            padding: 12px 15px;
            border: 1px solid #b0c9b8;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-control:focus {
            border-color: #2a6e3f;
            outline: none;
            box-shadow: 0 0 0 3px rgba(42, 110, 63, 0.2);
        }
        .star-rating {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .star-rating .star {
            transition: color 0.2s;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #f0c850;
        }
        .btn-submit {
            background-color: #2a6e3f;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 6px;
            font-weight: 700;
            cursor: pointer;
            align-self: flex-start;
            transition: background-color 0.3s;
        }
        .btn-submit:hover {
            background-color: #1e4d2b;
        }
        .update-info {
            text-align: right;
            font-size: 0.9rem;
            color: #777;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px solid #ddd;
        }
        .site-footer {
            background-color: #1a472a;
            color: #c1d6cc;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-radius: 12px 12px 0 0;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: #d4af37;
            margin-top: 0;
            font-size: 1.4rem;
            border-left: none;
            padding-left: 0;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #b0c9b8;
        }
        .footer-links a:hover {
            color: #f0c850;
        }
        friend-link {
            display: block;
            background-color: #2a6e3f;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
            color: #fff;
        }
        friend-link a {
            color: #f0c850;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2a6e3f;
            font-size: 0.9rem;
            color: #8fa89a;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .article-content { padding: 1.5rem; }
            .search-form { flex-direction: column; }
            .search-input { border-radius: 50px; margin-bottom: 10px; }
            .search-btn { border-radius: 50px; padding: 15px; }
            .footer-container { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            .header-container { flex-direction: column; align-items: flex-start; }
            .logo { margin-bottom: 1rem; }
            .hamburger { position: absolute; right: 15px; top: 1.2rem; }
        }
