        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #2e8b57;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #1e6b3a;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #2e8b57, #1e6b3a);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: bold;
            color: white;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo a:hover {
            color: #ffd700;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            color: white;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #1e6b3a;
            padding: 1rem;
            border-radius: 0 0 10px 10px;
            margin-top: 1rem;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            padding: 0.75rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #ccc;
        }
        .breadcrumb a {
            color: #ffd700;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .search-bar {
            margin: 2rem 0;
            padding: 1rem;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-form input {
            flex: 1;
            padding: 12px;
            border: 2px solid #2e8b57;
            border-radius: 5px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: #2e8b57;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        .search-form button:hover {
            background-color: #1e6b3a;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            margin: 2rem 0;
        }
        @media (max-width: 768px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.08);
        }
        .article-content h1 {
            font-size: 2.5rem;
            color: #2e8b57;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-content h2 {
            font-size: 2rem;
            color: #1e6b3a;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #ffd700;
        }
        .article-content h3 {
            font-size: 1.5rem;
            color: #333;
            margin: 1.5rem 0 1rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .article-content strong {
            color: #2e8b57;
            font-weight: 700;
        }
        .article-content em {
            color: #666;
            font-style: italic;
        }
        .article-content .highlight {
            background-color: #fffacd;
            padding: 1.5rem;
            border-left: 5px solid #ffd700;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .article-content img {
            margin: 2rem auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            max-width: 80%;
        }
        .side-panel {
            background-color: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.08);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .side-panel h3 {
            color: #1e6b3a;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        .side-panel ul {
            list-style: none;
        }
        .side-panel li {
            margin-bottom: 0.75rem;
        }
        .side-panel a {
            display: block;
            padding: 0.75rem;
            background-color: #f9f9f9;
            border-radius: 5px;
            transition: background 0.3s ease;
        }
        .side-panel a:hover {
            background-color: #e9ffe9;
        }
        .interactive-section {
            margin: 3rem 0;
            padding: 2rem;
            background-color: #f0f8ff;
            border-radius: 15px;
            border: 2px dashed #2e8b57;
        }
        .interactive-section h3 {
            color: #1e6b3a;
            margin-bottom: 1.5rem;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .comment-form textarea, .rating-form select, .comment-form input, .rating-form input {
            padding: 12px;
            border: 2px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
            font-family: inherit;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .rating-form select {
            width: 100px;
            align-self: flex-start;
        }
        .comment-form button, .rating-form button {
            align-self: flex-start;
            background-color: #2e8b57;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        .comment-form button:hover, .rating-form button:hover {
            background-color: #1e6b3a;
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.5rem;
            color: #ffd700;
            margin-bottom: 1rem;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
            margin: 3rem 0;
            padding: 2rem;
            background-color: #1e6b3a;
            border-radius: 15px;
        }
        @media (max-width: 1024px) {
            .footer-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .footer-links {
                grid-template-columns: 1fr;
            }
        }
        .web-link {
            background-color: white;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: #1e6b3a;
            font-weight: 500;
        }
        footer {
            background-color: #333;
            color: white;
            padding: 2rem 0;
            text-align: center;
        }
        .copyright {
            font-size: 0.9rem;
            color: #ccc;
            margin-top: 1rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-content h1 {
                font-size: 2rem;
            }
            .article-content h2 {
                font-size: 1.75rem;
            }
            .article-content h3 {
                font-size: 1.25rem;
            }
            .article-content p {
                font-size: 1rem;
            }
        }
        .logo a, .nav-desktop a, .web-link, button {
            transition: all 0.3s ease;
        }
        .article-content a {
            border-bottom: 1px dotted #2e8b57;
        }
        .article-content a:hover {
            border-bottom: 2px solid #1e6b3a;
        }
