        * {
            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: #f8f9fa;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #1a73e8;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #0d47a1;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .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; }
        .underline { text-decoration: underline; }
        .highlight {
            background-color: #fffacd;
            padding: 2px 4px;
            border-radius: 3px;
        }
        header {
            background: linear-gradient(135deg, #2a9134 0%, #1e6823 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            letter-spacing: -1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo a {
            color: #fff;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: #ffd54f;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: #e0f2e9;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 5px;
        }
        .desktop-nav a:hover,
        .desktop-nav a.active {
            background-color: rgba(255, 255, 255, 0.15);
            color: white;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: none;
            border: none;
            gap: 5px;
            padding: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: white;
            border-radius: 2px;
            transition: 0.3s;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #1e6823;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 1rem;
        }
        .mobile-nav a {
            color: white;
            font-weight: 600;
            display: block;
            padding: 0.8rem;
            border-radius: 5px;
        }
        .mobile-nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 1rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin-left: 0.5rem;
            color: #6c757d;
        }
        .breadcrumb a {
            color: #495057;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        h1 {
            font-size: 2.8rem;
            color: #1e6823;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid #ffd54f;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            color: #2a9134;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed #ccc;
        }
        h3 {
            font-size: 1.6rem;
            color: #3a9b45;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #4aa55a;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            color: #555;
            font-weight: 500;
            margin-bottom: 2rem;
        }
        .article-meta {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 2rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .featured-image {
            margin: 2.5rem 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 0.8rem;
            background-color: #f8f9fa;
        }
        blockquote {
            border-left: 5px solid #2a9134;
            padding-left: 1.5rem;
            margin: 2rem 0;
            color: #555;
            font-style: italic;
            background-color: #f9f9f9;
            padding-top: 1rem;
            padding-bottom: 1rem;
            border-radius: 0 10px 10px 0;
        }
        .inline-link-list {
            background-color: #f1f8ff;
            border: 1px solid #c8e1ff;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2rem 0;
        }
        .inline-link-list h4 {
            margin-top: 0;
            color: #1a73e8;
        }
        .inline-link-list ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .inline-link-list li {
            background-color: white;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            border: 1px solid #d1e6ff;
        }
        aside {
            background-color: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            color: #2a9134;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffd54f;
        }
        #search-form {
            display: flex;
        }
        #search-input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #2a9134;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        #search-btn {
            background-color: #2a9134;
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        #search-btn:hover {
            background-color: #1e6823;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffd54f;
        }
        #rating-value {
            font-weight: bold;
            color: #2a9134;
        }
        #submit-rating {
            margin-top: 1rem;
            background-color: #2a9134;
            color: white;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        #submit-rating:hover {
            background-color: #1e6823;
        }
        #comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        #comment-form input,
        #comment-form textarea {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
        }
        #comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        #submit-comment {
            background-color: #1a73e8;
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        #submit-comment:hover {
            background-color: #0d47a1;
        }
        .comments-list {
            margin-top: 2rem;
        }
        .comment {
            background-color: #f8f9fa;
            padding: 1rem;
            border-radius: 10px;
            margin-bottom: 1rem;
            border-left: 4px solid #2a9134;
        }
        .comment-author {
            font-weight: bold;
            color: #2a9134;
        }
        .comment-date {
            color: #666;
            font-size: 0.9rem;
            margin-left: 1rem;
        }
        footer {
            background-color: #1a1a1a;
            color: #ccc;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            color: white;
            margin-bottom: 1rem;
        }
        .footer-about p {
            text-align: left;
        }
        .footer-links h4,
        .footer-contact h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #aaa;
        }
        .footer-links a:hover {
            color: white;
        }
        friend-link {
            display: block;
            margin-top: 1rem;
            padding: 1rem;
            background-color: #2a2a2a;
            border-radius: 8px;
        }
        friend-link a {
            color: #4CAF50;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #444;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: flex; }
            .header-container { padding: 0 15px; }
            article, aside { padding: 1.5rem; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.4rem; }
            .content-wrapper { gap: 2rem; }
        }
