:root {
            --primary-color: #ff6b6b;
            --secondary-color: #4ecdc4;
            --accent-color: #ffd166;
            --dark-color: #1a535c;
            --light-color: #f7fff7;
            --text-color: #333;
            --gray-color: #6c757d;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: var(--light-color);
            direction: ltr;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--dark-color);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 700;
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--accent-color);
        }
        .logo span {
            color: var(--accent-color);
        }
        .nav-desktop {
            display: flex;
            gap: 1.5rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .mobile-nav-toggle {
                display: block;
            }
        }
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--dark-color);
            padding: 2rem;
            transition: var(--transition);
            z-index: 1001;
            overflow-y: auto;
        }
        .mobile-nav.active {
            right: 0;
        }
        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }
        .close-mobile-nav {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .mobile-nav-links a {
            color: white;
            text-decoration: none;
            padding: 0.75rem;
            border-radius: 4px;
            transition: var(--transition);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .mobile-nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 1rem 0;
            margin-bottom: 2rem;
        }
        .breadcrumb-links {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 0.5rem;
        }
        .breadcrumb-links li {
            display: flex;
            align-items: center;
        }
        .breadcrumb-links li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: var(--gray-color);
        }
        .breadcrumb-links a {
            color: var(--dark-color);
            text-decoration: none;
        }
        .breadcrumb-links a:hover {
            text-decoration: underline;
        }
        main {
            padding: 2rem 0;
        }
        article {
            background-color: white;
            border-radius: 10px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        h1 {
            color: var(--dark-color);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }
        h2 {
            color: var(--dark-color);
            font-size: 2.2rem;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--secondary-color);
        }
        h3 {
            color: var(--dark-color);
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: var(--dark-color);
            font-size: 1.4rem;
            margin: 1.5rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--dark-color);
            background-color: rgba(78, 205, 196, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--secondary-color);
            margin-bottom: 2rem;
        }
        strong {
            color: var(--dark-color);
            font-weight: 700;
        }
        em {
            color: var(--dark-color);
            font-style: italic;
        }
        .highlight {
            background-color: rgba(255, 214, 102, 0.3);
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
        }
        ul, ol {
            margin-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 2rem auto;
            display: block;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .article-image:hover {
            transform: scale(1.02);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray-color);
            margin-top: 0.5rem;
            margin-bottom: 2rem;
        }
        .feature-box {
            background-color: rgba(26, 83, 92, 0.05);
            border-radius: 10px;
            padding: 2rem;
            margin: 2rem 0;
            border: 1px solid rgba(26, 83, 92, 0.1);
        }
        .search-form {
            display: flex;
            margin: 2rem 0;
            max-width: 600px;
        }
        .search-form input {
            flex: 1;
            padding: 0.75rem 1rem;
            border: 2px solid var(--secondary-color);
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: var(--dark-color);
        }
        .rating-form, .comment-form {
            background-color: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            border: 1px solid #dee2e6;
        }
        .rating-form h3, .comment-form h3 {
            margin-top: 0;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: var(--accent-color);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ced4da;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background-color: var(--dark-color);
            transform: translateY(-3px);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background-color: white;
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 5px solid var(--secondary-color);
        }
        .stat-card:hover {
            transform: translateY(-10px);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        .stat-text {
            color: var(--dark-color);
            font-weight: 600;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        .comparison-table th,
        .comparison-table td {
            padding: 1rem;
            text-align: left;
            border: 1px solid #dee2e6;
        }
        .comparison-table th {
            background-color: var(--dark-color);
            color: white;
            font-weight: 600;
        }
        .comparison-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        .comparison-table .feature-cell {
            font-weight: 600;
            color: var(--dark-color);
        }
        .tick {
            color: #28a745;
            font-weight: bold;
        }
        .cross {
            color: #dc3545;
            font-weight: bold;
        }
        .faq-container {
            margin: 2.5rem 0;
        }
        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid #dee2e6;
            border-radius: 8px;
            overflow: hidden;
        }
        .faq-question {
            padding: 1.5rem;
            background-color: #f8f9fa;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-question:hover {
            background-color: #e9ecef;
        }
        .faq-answer {
            padding: 1.5rem;
            display: none;
        }
        .faq-item.active .faq-answer {
            display: block;
        }
        .web-links-section {
            margin: 3rem 0;
        }
        .web-link {
            margin-bottom: 1rem;
            padding: 1rem;
            background-color: #f8f9fa;
            border-radius: 5px;
            border-left: 4px solid var(--secondary-color);
        }
        .web-link a {
            color: var(--dark-color);
            text-decoration: none;
            font-weight: 500;
        }
        .web-link a:hover {
            text-decoration: underline;
            color: var(--primary-color);
        }
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 0.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.6rem;
            }
            article {
                padding: 2rem;
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            article {
                padding: 1.5rem;
            }
            .feature-box {
                padding: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                border-radius: 8px;
                margin-bottom: 0.5rem;
            }
            .search-form button {
                border-radius: 8px;
                width: 100%;
            }
        }
        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }
            article {
                padding: 1rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .comparison-table {
                display: block;
                overflow-x: auto;
            }
        }
        @media print {
            .mobile-nav-toggle,
            .mobile-nav,
            .search-form,
            .rating-form,
            .comment-form,
            .web-links-section,
            footer {
                display: none !important;
            }
            article {
                box-shadow: none;
                padding: 0;
            }
            a {
                color: black !important;
                text-decoration: none !important;
            }
        }
