* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Nirmala UI', 'Arial', sans-serif;
        }
        :root {
            --primary-green: #2e7d32;
            --secondary-green: #4caf50;
            --accent-yellow: #ffeb3b;
            --dark-brown: #5d4037;
            --light-brown: #8d6e63;
            --background-cream: #fff8e1;
            --text-dark: #333;
            --text-light: #666;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--background-cream);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background-color: var(--primary-green);
            color: white;
            border-radius: 50px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            background-color: var(--secondary-green);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        header {
            background: linear-gradient(to right, var(--primary-green), var(--secondary-green));
            color: white;
            padding: 15px 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            letter-spacing: 1px;
            color: var(--accent-yellow);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .logo span {
            color: white;
        }
        .desktop-nav ul {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .desktop-nav a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        .mobile-nav-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--primary-green);
            padding: 20px;
            flex-direction: column;
            gap: 15px;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 12px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb {
            background-color: #e8f5e9;
            padding: 12px 0;
            margin-bottom: 20px;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 10px;
            color: var(--light-brown);
        }
        .breadcrumb a:hover {
            color: var(--primary-green);
            text-decoration: underline;
        }
        main {
            padding: 40px 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 3px dashed var(--light-brown);
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--primary-green);
            margin-bottom: 15px;
            line-height: 1.3;
        }
        .meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: var(--text-light);
            font-size: 0.95rem;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        .article-content h2, .article-content h3 {
            color: var(--dark-brown);
            margin-top: 30px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-yellow);
        }
        .article-content h2 {
            font-size: 2rem;
        }
        .article-content h3 {
            font-size: 1.6rem;
        }
        .article-content p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #f9f9c5;
            padding: 20px;
            border-left: 5px solid var(--accent-yellow);
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .feature-img {
            margin: 30px 0;
            text-align: center;
        }
        .feature-img figcaption {
            font-style: italic;
            color: var(--text-light);
            margin-top: 10px;
        }
        .interactive-section {
            background: linear-gradient(to bottom right, #e8f5e9, #fff8e1);
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
            text-align: center;
        }
        .interactive-section h3 {
            color: var(--primary-green);
            border: none;
        }
        form {
            max-width: 600px;
            margin: 30px auto 0;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            text-align: left;
        }
        label {
            margin-bottom: 8px;
            font-weight: bold;
            color: var(--dark-brown);
        }
        input, textarea, select {
            padding: 15px;
            border: 2px solid #ccc;
            border-radius: 10px;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--secondary-green);
            box-shadow: 0 0 8px rgba(76, 175, 80, 0.3);
        }
        .rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            direction: ltr;
            margin: 10px 0;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            margin: 0;
        }
        .rating label:hover,
        .rating label:hover ~ label,
        .rating input:checked ~ label {
            color: #ffc107;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background-color: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        .widget h3 {
            color: var(--primary-green);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-yellow);
        }
        .widget ul {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .widget li {
            padding: 12px;
            background-color: #f5f5f5;
            border-radius: 8px;
            transition: var(--transition);
        }
        .widget li:hover {
            background-color: #e0f2f1;
            padding-left: 20px;
        }
        .widget li a {
            display: block;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .web-link {
            background-color: #f1f8e9;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            border: 1px dashed var(--light-brown);
        }
        .web-link a {
            color: var(--primary-green);
            font-weight: bold;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background-color: var(--dark-brown);
            color: white;
            padding: 60px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--accent-yellow);
        }
        .footer-section ul li {
            margin-bottom: 12px;
        }
        .footer-section a:hover {
            color: var(--accent-yellow);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #ccc;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-nav-toggle {
                display: block;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .article-content {
                padding: 25px;
            }
            .content-grid {
                gap: 30px;
            }
            .interactive-section {
                padding: 25px 15px;
            }
            .rating label {
                font-size: 1.8rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }
        @media print {
            .interactive-section, .sidebar, .mobile-nav-toggle, footer, .breadcrumb {
                display: none;
            }
            .article-content {
                box-shadow: none;
                padding: 0;
            }
        }
