        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        a {
            text-decoration: none;
            color: #0066cc;
            transition: color 0.3s;
        }
        a:hover {
            color: #004999;
        }
        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, #005a34 0%, #00853e 100%);
            color: white;
            padding: 15px 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: 2.2rem;
            font-weight: 900;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2.5rem;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .mobile-nav {
            display: none;
            background-color: #004225;
            padding: 20px;
            margin-top: 15px;
            border-radius: 10px;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 15px;
        }
        .mobile-nav a {
            color: white;
            font-weight: 600;
            display: block;
            padding: 10px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 10px 0;
            margin-top: 10px;
            border-radius: 5px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 10px;
            padding-left: 20px;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 30px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .content-area {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        .sidebar {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            align-self: start;
        }
        h1 {
            font-size: 2.8rem;
            color: #005a34;
            margin-bottom: 20px;
            border-bottom: 4px solid #ffcc00;
            padding-bottom: 10px;
        }
        h2 {
            font-size: 2rem;
            color: #00853e;
            margin: 30px 0 15px;
            padding-left: 10px;
            border-left: 5px solid #ffcc00;
        }
        h3 {
            font-size: 1.5rem;
            color: #333;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fff9e6;
            padding: 20px;
            border-left: 5px solid #ffcc00;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.2rem;
            margin-right: 5px;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container img {
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transition: transform 0.5s;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .search-box {
            margin-bottom: 30px;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 14px 20px;
            border: 2px solid #ddd;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-box input:focus {
            border-color: #00853e;
        }
        .search-box button {
            background-color: #00853e;
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background-color: #005a34;
        }
        .comment-section, .rating-section {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 12px;
            margin-top: 40px;
            border: 1px solid #e0e0e0;
        }
        .comment-section h3, .rating-section h3 {
            color: #005a34;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 20px;
        }
        .comment-form textarea, .comment-form input, .rating-form select {
            padding: 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            width: 100%;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .comment-form button, .rating-form button {
            background-color: #00853e;
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: background 0.3s;
            align-self: flex-start;
            min-width: 150px;
        }
        .comment-form button:hover, .rating-form button:hover {
            background-color: #005a34;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        .internal-links {
            background-color: #e9f5e9;
            padding: 40px 20px;
            margin-top: 50px;
            border-radius: 15px 15px 0 0;
        }
        .internal-links h3 {
            text-align: center;
            color: #005a34;
            margin-bottom: 30px;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: white;
            padding: 18px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: #0066cc;
            font-weight: 600;
            display: block;
            font-size: 1.05rem;
        }
        footer {
            background-color: #002211;
            color: white;
            padding: 30px 0;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        .copyright {
            font-size: 0.95rem;
            color: #ccc;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .header-top {
                flex-wrap: wrap;
            }
            .breadcrumb ol {
                flex-wrap: wrap;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .content-area, .sidebar {
                padding: 20px;
            }
            .search-box form {
                flex-direction: column;
            }
            .search-box input {
                border-radius: 50px;
                margin-bottom: 10px;
            }
            .search-box button {
                border-radius: 50px;
                padding: 14px;
            }
        }
