        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Arial', sans-serif;
        }
        body {
            background: linear-gradient(135deg, #f9f7f0 0%, #e8f5e9 100%);
            color: #2d3e2f;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            text-decoration: none;
            color: #2e7d32;
            transition: color 0.3s;
        }
        a:hover {
            color: #1b5e20;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(90deg, #1b5e20 0%, #2e7d32 100%);
            color: white;
            padding: 1.2rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(to right, #a5d6a7, #e8f5e9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .logo a {
            background: none;
            -webkit-text-fill-color: inherit;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        nav a {
            color: #e8f5e9;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0.8rem;
            border-radius: 6px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        nav a:hover {
            background: rgba(255,255,255,0.15);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            border-radius: 2px;
            transition: 0.3s;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: #e8f5e9;
            border-bottom: 1px solid #c8e6c9;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: #4caf50;
        }
        main {
            flex: 1;
            padding: 2.5rem 0;
        }
        article {
            background: white;
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            margin-bottom: 2.5rem;
        }
        h1 {
            color: #1b5e20;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid #4caf50;
            padding-left: 1.2rem;
        }
        h2 {
            color: #2e7d32;
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #a5d6a7;
        }
        h3 {
            color: #388e3c;
            font-size: 1.5rem;
            margin: 1.8rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(120deg, #e8f5e9 0%, #c8e6c9 100%);
            padding: 1.8rem;
            border-radius: 12px;
            border-left: 5px solid #2e7d32;
            margin: 2rem 0;
            font-weight: 600;
        }
        .emoji {
            font-size: 1.3rem;
            margin-right: 0.5rem;
        }
        .feature-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            margin: 2.5rem 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            border: 8px solid white;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .form-card {
            background: #f1f8e9;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .form-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.1);
        }
        .form-card h3 {
            color: #1b5e20;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-top: 0;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.9rem;
            margin: 0.8rem 0 1.5rem;
            border: 1px solid #a5d6a7;
            border-radius: 8px;
            font-size: 1rem;
            background: white;
        }
        button {
            background: linear-gradient(90deg, #2e7d32, #4caf50);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
        }
        button:hover {
            background: linear-gradient(90deg, #1b5e20, #2e7d32);
            transform: scale(1.03);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #e0e0e0;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffc107;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            margin: 3rem 0;
        }
        .web-link {
            background: white;
            padding: 1.2rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }
        .web-link:hover {
            background: #e8f5e9;
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
        }
        footer {
            background: linear-gradient(90deg, #1b5e20, #2e7d32);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: auto;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.2);
            font-size: 0.95rem;
            opacity: 0.9;
        }
        @media (max-width: 1024px) {
            .web-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.7rem; }
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #2e7d32;
                flex-direction: column;
                padding: 1.5rem;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
                border-top: 2px solid #a5d6a7;
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: flex;
            }
            .header-content {
                flex-wrap: wrap;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
            .interactive-section {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .web-links {
                grid-template-columns: 1fr;
            }
            article {
                padding: 1.5rem;
            }
            .logo {
                font-size: 1.8rem;
            }
        }
