        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f0f8f0;
            color: #333;
            line-height: 1.7;
        }
        a {
            text-decoration: none;
            color: #2e7d32;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #1b5e20;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #ffffff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #e0e0e0;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: #4caf50;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-icon {
            color: #ff9800;
        }
        .search-form {
            display: flex;
            width: 300px;
        }
        .search-input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #4caf50;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
            outline: none;
        }
        .search-btn {
            background-color: #4caf50;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            font-size: 1rem;
            transition: background-color 0.3s;
        }
        .search-btn:hover {
            background-color: #388e3c;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #4caf50;
            cursor: pointer;
        }
        nav {
            padding: 15px 0;
        }
        .nav-list {
            display: flex;
            list-style: none;
            justify-content: center;
            gap: 30px;
        }
        .nav-list li a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 16px;
            border-radius: 20px;
            transition: all 0.3s ease;
        }
        .nav-list li a:hover {
            background-color: #e8f5e9;
            color: #1b5e20;
        }
        .nav-list li a.active {
            background-color: #4caf50;
            color: white;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #e8f5e9;
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin-left: 10px;
            color: #777;
        }
        main {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .article-content {
            background-color: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .article-header {
            margin-bottom: 40px;
            border-bottom: 2px solid #e0f2e1;
            padding-bottom: 20px;
        }
        h1 {
            font-size: 2.8rem;
            color: #2e7d32;
            line-height: 1.2;
            margin-bottom: 15px;
        }
        .article-meta {
            display: flex;
            gap: 20px;
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 20px;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        .featured-image figcaption {
            text-align: center;
            padding: 10px;
            font-style: italic;
            color: #666;
            background-color: #f9f9f9;
        }
        h2 {
            font-size: 2rem;
            color: #388e3c;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 1px dashed #c8e6c9;
        }
        h3 {
            font-size: 1.5rem;
            color: #43a047;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #f1f8e9;
            padding: 25px;
            border-radius: 10px;
            border-left: 5px solid #4caf50;
            margin: 25px 0;
        }
        .highlight strong {
            color: #2e7d32;
        }
        .tip-box {
            background-color: #e8f5e9;
            padding: 20px;
            border-radius: 10px;
            margin: 25px 0;
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }
        .tip-icon {
            font-size: 1.5rem;
            color: #ff9800;
        }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 20px;
        }
        li {
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        .emoji {
            font-size: 1.3rem;
            margin-right: 8px;
        }
        .bold-text {
            font-weight: 800;
            color: #1b5e20;
        }
        .content-break {
            text-align: center;
            margin: 40px 0;
            color: #4caf50;
            font-size: 1.5rem;
        }
        sidebar {
            position: sticky;
            top: 20px;
            height: fit-content;
        }
        .sidebar-widget {
            background-color: white;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            color: #388e3c;
            padding-bottom: 10px;
            border-bottom: 2px solid #e0f2e1;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 10px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #ff9800;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-group label {
            font-weight: 600;
            color: #555;
        }
        .form-control {
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-control:focus {
            border-color: #4caf50;
            outline: none;
        }
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background-color: #4caf50;
            color: white;
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .submit-btn:hover {
            background-color: #388e3c;
        }
        .footer-links {
            background-color: #2e7d32;
            color: white;
            padding: 50px 0 30px;
            margin-top: 50px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 10px;
            transition: transform 0.3s, background-color 0.3s;
        }
        .web-link:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #c8e6c9;
            font-weight: 600;
            display: block;
            text-align: center;
        }
        .web-link a:hover {
            color: white;
        }
        footer {
            background-color: #1b5e20;
            color: #c8e6c9;
            padding: 30px 0;
            text-align: center;
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        .social-links {
            display: flex;
            gap: 15px;
        }
        .social-links a {
            color: #c8e6c9;
            font-size: 1.3rem;
            transition: color 0.3s;
        }
        .social-links a:hover {
            color: white;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .web-links-container {
                grid-template-columns: repeat(3, 1fr);
            }
            h1 {
                font-size: 2.3rem;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
                gap: 15px;
            }
            .search-form {
                order: 3;
                width: 100%;
            }
            .mobile-menu-btn {
                display: block;
            }
            nav {
                display: none;
                padding: 0;
            }
            nav.active {
                display: block;
            }
            .nav-list {
                flex-direction: column;
                gap: 0;
            }
            .nav-list li {
                border-bottom: 1px solid #eee;
            }
            .nav-list li a {
                display: block;
                padding: 15px;
                border-radius: 0;
            }
            .article-content {
                padding: 25px;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .web-links-container {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 576px) {
            .web-links-container {
                grid-template-columns: 1fr;
            }
            .article-meta {
                flex-direction: column;
                gap: 5px;
        }
        }
        @media print {
            header, sidebar, .footer-links, .search-form, .mobile-menu-btn, .comment-form, .rating-form {
                display: none;
            }
            body {
                background-color: white;
                color: black;
            }
            .container {
                max-width: 100%;
                padding: 0;
            }
            main {
                padding: 0;
                grid-template-columns: 1fr;
            }
            .article-content {
                box-shadow: none;
                padding: 0;
            }
        }
