:root {
            --primary: #FF6B35;
            --secondary: #1A5276;
            --accent: #F4D03F;
            --dark: #1C2833;
            --light: #F8F9F9;
            --gray: #85929E;
            --success: #28B463;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Arial', sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.7;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--secondary);
        }
        .desktop-nav ul {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            color: var(--dark);
            padding: 8px 5px;
            position: relative;
            transition: var(--transition);
        }
        .desktop-nav a:hover {
            color: var(--primary);
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--dark);
        }
        .mobile-nav {
            display: none;
            background-color: white;
            padding: 20px;
            box-shadow: var(--shadow);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav a {
            display: block;
            padding: 12px;
            border-bottom: 1px solid #eee;
            font-weight: 600;
        }
        .mobile-nav a:hover {
            background-color: #f9f9f9;
            color: var(--primary);
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #f0f3f4;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .breadcrumb a {
            color: var(--secondary);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        main {
            padding: 40px 0;
        }
        .article-header {
            margin-bottom: 40px;
            text-align: center;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--secondary);
            margin-bottom: 20px;
            line-height: 1.3;
        }
        .meta-info {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: var(--gray);
            font-size: 0.95rem;
            margin-bottom: 20px;
        }
        .meta-info span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .featured-img {
            margin: 30px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .article-content {
            font-size: 1.1rem;
            max-width: 900px;
            margin: 0 auto;
        }
        .article-content section {
            margin-bottom: 50px;
        }
        .article-content h2 {
            font-size: 2rem;
            color: var(--primary);
            margin: 30px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed var(--accent);
        }
        .article-content h3 {
            font-size: 1.6rem;
            color: var(--secondary);
            margin: 25px 0 15px;
        }
        .article-content p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .highlight {
            background-color: #fff9e6;
            border-left: 5px solid var(--accent);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight p {
            margin-bottom: 0;
            font-weight: 600;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            text-align: center;
            border-top: 5px solid var(--primary);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: 1rem;
            color: var(--gray);
        }
        .interview {
            background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
            border-left: 8px solid var(--secondary);
        }
        .interview-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        .interview-header i {
            font-size: 2rem;
            color: var(--secondary);
        }
        .quote {
            font-style: italic;
            color: #555;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }
        .quote-author {
            font-weight: 600;
            color: var(--secondary);
            text-align: right;
        }
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .tip-card {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid transparent;
        }
        .tip-card:hover {
            transform: translateY(-5px);
            border-top-color: var(--accent);
        }
        .tip-card h4 {
            color: var(--primary);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .tip-card i {
            color: var(--success);
        }
        .interactive-section {
            background-color: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            margin: 50px 0;
        }
        .interactive-section h2 {
            text-align: center;
            color: var(--secondary);
            margin-bottom: 30px;
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }
        .form-control {
            width: 100%;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            border-color: var(--primary);
            outline: none;
        }
        .rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 5px;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating input:checked ~ label,
        .rating label:hover,
        .rating label:hover ~ label {
            color: var(--accent);
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, var(--primary), #FF8C42);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(255, 107, 53, 0.3);
        }
        .btn-block {
            display: block;
            width: 100%;
        }
        .footer-links {
            background-color: #2C3E50;
            padding: 50px 0 30px;
            color: white;
        }
        .web-link {
            display: inline-block;
            margin: 10px 15px 10px 0;
            padding: 10px 20px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: var(--primary);
            transform: translateX(5px);
        }
        .footer-links .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        footer {
            background-color: #1C2833;
            color: #BFC9CA;
            padding: 30px 0;
            text-align: center;
        }
        .copyright {
            font-size: 0.9rem;
            margin-top: 20px;
        }
        @media (max-width: 992px) {
            .article-header h1 {
                font-size: 2.3rem;
            }
            .stats-box {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .meta-info {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
            .tips-grid {
                grid-template-columns: 1fr;
            }
            .interactive-section {
                padding: 25px;
            }
            .rating label {
                font-size: 1.7rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .logo {
                font-size: 1.8rem;
            }
            .article-content h2 {
                font-size: 1.7rem;
            }
            .article-content h3 {
                font-size: 1.4rem;
            }
        }
