        * {
            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: #f8f9fa;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #006400;
        }
        a:hover {
            color: #ff9900;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #006400 0%, #003300 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        .logo a {
            font-size: 2rem;
            font-weight: bold;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #ffcc00;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: background 0.3s;
        }
        nav a:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        .breadcrumb {
            padding: 1rem 20px;
            background: #e9ecef;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb span {
            color: #888;
        }
        main {
            padding: 2rem 0;
            background: white;
        }
        article {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 2.8rem;
            color: #006400;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #003300;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #ffcc00;
        }
        h3 {
            font-size: 1.5rem;
            color: #005500;
            margin: 1.5rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: #fffacd;
            padding: 1rem;
            border-left: 5px solid #ffcc00;
            margin: 1.5rem 0;
            font-weight: bold;
        }
        .image-container {
            text-align: center;
            margin: 2rem 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .feature-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .feature {
            background: #f1f8e9;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        }
        .feature h3 {
            color: #006400;
        }
        .interactive {
            margin: 3rem 0;
            padding: 2rem;
            background: #e8f5e9;
            border-radius: 15px;
            box-shadow: 0 6px 12px rgba(0,100,0,0.1);
        }
        .interactive h2 {
            color: #006400;
            text-align: center;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 2px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #006400;
            outline: none;
        }
        button {
            padding: 0.8rem 2rem;
            background: #006400;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        button:hover {
            background: #004d00;
            transform: translateY(-3px);
        }
        .rating {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s;
        }
        .rating input:checked ~ label,
        .rating label:hover,
        .rating label:hover ~ label {
            color: #ffcc00;
        }
        footer {
            background: #003300;
            color: white;
            padding: 2rem 0 1rem;
        }
        .internal-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
            padding: 2rem 20px;
            background: #004d00;
        }
        .web-link {
            padding: 0.8rem;
            background: rgba(255,255,255,0.1);
            border-radius: 5px;
            transition: background 0.3s;
        }
        .web-link:hover {
            background: rgba(255,255,255,0.2);
        }
        .web-link a {
            color: #ffcc00;
            font-weight: 600;
        }
        .footer-content {
            text-align: center;
            padding: 1.5rem 20px;
            border-top: 1px solid rgba(255,255,255,0.2);
        }
        .copyright {
            font-size: 0.9rem;
            color: #ccc;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #006400;
                padding: 1rem;
                z-index: 1000;
            }
            nav ul.active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .feature-box {
                grid-template-columns: 1fr;
            }
            .internal-links {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
        }
        @media print {
            header, footer, .interactive, .breadcrumb {
                display: none;
            }
            body {
                color: black;
                background: white;
            }
        }
