        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            min-height: 100vh;
            padding-bottom: 1px;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-family: Georgia, 'Times New Roman', Times, serif; color: #1a365d; margin-bottom: 1rem; line-height: 1.3; }
        h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); border-bottom: 4px solid #e53e3e; padding-bottom: 0.5rem; margin-top: 1.5rem; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); color: #2d3748; margin-top: 2.5rem; padding-left: 0.75rem; border-left: 5px solid #38a169; }
        h3 { font-size: 1.6rem; color: #4a5568; margin-top: 2rem; }
        h4 { font-size: 1.3rem; color: #718096; margin-top: 1.5rem; }
        p { margin-bottom: 1.5rem; text-align: justify; hyphens: auto; }
        .lead { font-size: 1.25rem; color: #4a5568; font-weight: 300; }
        .highlight { background-color: #fffacd; padding: 0.2rem 0.5rem; border-radius: 3px; font-weight: 600; }
        .term { color: #c53030; font-style: italic; font-weight: bold; }
        .gujarati-term { font-family: 'Shruti', 'Noto Sans Gujarati', sans-serif; color: #2b6cb0; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        main.container { background-color: white; box-shadow: 0 0 30px rgba(0, 0, 0, 0.08); padding: 2rem; border-radius: 0 0 12px 12px; min-height: 1500px; }
        .site-header {
            background: linear-gradient(90deg, #1a202c 0%, #2d3748 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Courier New', monospace;
            font-size: 1.8rem;
            font-weight: 900;
            color: #f6ad55;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .my-logo span:nth-child(2) { color: #68d391; }
        .my-logo:hover { color: #fff; text-shadow: 0 0 8px #f6ad55; }
        .main-nav { display: flex; align-items: center; }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .nav-links a {
            color: #cbd5e0;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-links a:hover, .nav-links a.active {
            background-color: #4a5568;
            color: white;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #edf2f7;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin: 0 0.75rem;
            color: #a0aec0;
        }
        .breadcrumb a { color: #2b6cb0; text-decoration: none; }
        .breadcrumb a:hover { text-decoration: underline; }
        .search-module {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            margin: 2.5rem 0;
            border: 1px solid #e2e8f0;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 1rem auto 0;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid #cbd5e0;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .search-input:focus {
            outline: none;
            border-color: #4299e1;
        }
        .search-btn {
            background: linear-gradient(to right, #ed8936, #dd6b20);
            color: white;
            border: none;
            padding: 0 1.8rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }
        .search-btn:hover { background: linear-gradient(to right, #dd6b20, #c05621); }
        .content-section {
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px dashed #e2e8f0;
        }
        .info-box {
            background: #ebf8ff;
            border-left: 5px solid #3182ce;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .warning-box {
            background: #fff5f5;
            border-left: 5px solid #e53e3e;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .figure-container {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 800px;
        }
        .figure-container img {
            border-radius: 10px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
            border: 1px solid #ddd;
        }
        .figcaption {
            font-style: italic;
            color: #718096;
            margin-top: 0.75rem;
            font-size: 0.95rem;
        }
        .internal-link {
            color: #2b6cb0;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px dotted transparent;
            transition: all 0.2s;
        }
        .internal-link:hover {
            border-bottom-color: #2b6cb0;
            color: #1a202c;
        }
        .user-interaction {
            background: #f7fafc;
            padding: 2.5rem;
            border-radius: 12px;
            margin: 3rem 0;
            border: 1px solid #e2e8f0;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 1.5rem;
        }
        .rating-module, .comment-module {
            background: white;
            padding: 1.8rem;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #e2e8f0;
        }
        .stars .active { color: #f6ad55; }
        .form-group { margin-bottom: 1.2rem; }
        label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: #4a5568; }
        input, textarea, select {
            width: 100%;
            padding: 0.9rem;
            border: 1px solid #cbd5e0;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #4299e1;
            box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.15);
        }
        .submit-btn {
            background: linear-gradient(to right, #38a169, #2f855a);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            width: 100%;
            transition: all 0.3s;
        }
        .submit-btn:hover { background: linear-gradient(to right, #2f855a, #276749); }
        .site-footer {
            background: #1a202c;
            color: #cbd5e0;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-logo { font-size: 1.8rem; color: #f6ad55; margin-bottom: 1rem; }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            list-style: none;
            margin-top: 1rem;
        }
        .friend-links a {
            color: #90cdf4;
            text-decoration: none;
            padding: 0.5rem 0;
            border-bottom: 1px solid transparent;
            transition: all 0.3s;
        }
        .friend-links a:hover {
            color: #63b3ed;
            border-bottom-color: #63b3ed;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2d3748;
            font-size: 0.9rem;
            color: #a0aec0;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #718096;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid #e2e8f0;
        }
        @media (max-width: 992px) {
            .nav-links { gap: 1rem; }
        }
        @media (max-width: 768px) {
            .header-content { flex-wrap: wrap; }
            .hamburger { display: block; }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #2d3748;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1.5rem;
                border-top: 1px solid #4a5568;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            .nav-links.active { display: flex; }
            .nav-links li { width: 100%; }
            .nav-links a { padding: 1rem; border-radius: 6px; }
            main.container { padding: 1.5rem; }
            h2 { padding-left: 0.5rem; }
            .user-interaction { padding: 1.5rem; }
            .interaction-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            .search-form { flex-direction: column; }
            .search-input { border-radius: 8px; margin-bottom: 0.5rem; }
            .search-btn { border-radius: 8px; padding: 0.9rem; }
            .container { padding: 0 1rem; }
        }
