* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
        }
        :root {
            --primary: #ff6b00;
            --primary-dark: #e55a00;
            --secondary: #1a237e;
            --light: #f5f5f5;
            --dark: #212121;
            --gray: #757575;
            --success: #4caf50;
            --warning: #ff9800;
            --danger: #f44336;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul, ol {
            list-style-position: inside;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .section {
            padding: 60px 0;
        }
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
            position: relative;
            padding-bottom: 10px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--primary);
        }
        .highlight {
            color: var(--primary);
            font-weight: 700;
        }
        .text-center {
            text-align: center;
        }
        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 a {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.5px;
        }
        .logo span {
            color: var(--secondary);
        }
        .search-form {
            display: flex;
            flex: 0 1 400px;
        }
        .search-input {
            flex: 1;
            padding: 12px 18px;
            border: 2px solid #ddd;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-input:focus {
            border-color: var(--primary);
        }
        .search-btn {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: #0d156b;
        }
        .nav-toggle {
            display: none;
            font-size: 1.5rem;
            color: var(--dark);
            background: none;
            border: none;
            cursor: pointer;
        }
        nav {
            background-color: var(--secondary);
        }
        .nav-list {
            display: flex;
            justify-content: center;
        }
        .nav-list li {
            list-style: none;
        }
        .nav-list a {
            display: block;
            padding: 18px 24px;
            color: white;
            font-weight: 600;
            transition: var(--transition);
            position: relative;
        }
        .nav-list a:hover,
        .nav-list a.active {
            background-color: rgba(255,255,255,0.1);
            color: #ffcc80;
        }
        .nav-list a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background-color: var(--primary);
            transition: var(--transition);
        }
        .nav-list a:hover::after {
            width: 80%;
        }
        .breadcrumb {
            padding: 12px 0;
            background-color: #f1f1f1;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--gray);
            transition: var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb i {
            margin: 0 8px;
            color: #aaa;
        }
        .hero {
            background: linear-gradient(rgba(26, 35, 126, 0.85), rgba(26, 35, 126, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }
        main {
            background-color: white;
            border-radius: 12px;
            box-shadow: var(--shadow);
            padding: 40px;
            margin: 40px auto;
        }
        article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        article h2 {
            font-size: 2rem;
            color: var(--secondary);
            margin: 2.5rem 0 1.2rem;
            border-left: 5px solid var(--primary);
            padding-left: 15px;
        }
        article h3 {
            font-size: 1.6rem;
            color: var(--dark);
            margin: 2rem 0 1rem;
        }
        article ul, article ol {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }
        article li {
            margin-bottom: 0.5rem;
        }
        .info-box {
            background-color: #e3f2fd;
            border-left: 5px solid var(--secondary);
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin: 0 auto;
        }
        .image-caption {
            font-style: italic;
            color: var(--gray);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .rating-section, .comments-section {
            background-color: #f9f9f9;
            padding: 30px;
            border-radius: 10px;
            margin-top: 50px;
        }
        .rating-form, .comment-form {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            max-width: 600px;
            margin: 30px auto 0;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }
        .form-control {
            padding: 14px;
            border: 2px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            border-color: var(--primary);
            outline: none;
        }
        .stars {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 5px;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            transition: var(--transition);
        }
        .stars label:hover,
        .stars label:hover ~ label,
        .stars input:checked ~ label {
            color: #ffc107;
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .footer-links {
            background-color: #eee;
            padding: 40px 0;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            transition: var(--transition);
            border-left: 4px solid transparent;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
            border-left-color: var(--primary);
        }
        .web-link a {
            color: var(--secondary);
            font-weight: 600;
            display: block;
            margin-bottom: 8px;
        }
        .web-link p {
            color: var(--gray);
            font-size: 0.9rem;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 40px 0 20px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 15px;
        }
        .footer-about p {
            color: #b0b0b0;
            margin-bottom: 20px;
        }
        .social-links {
            display: flex;
            gap: 15px;
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #333;
            color: white;
            border-radius: 50%;
            transition: var(--transition);
        }
        .social-links a:hover {
            background-color: var(--primary);
            transform: scale(1.1);
        }
        .footer-heading {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #fff;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--primary);
        }
        .footer-links-list li {
            list-style: none;
            margin-bottom: 12px;
        }
        .footer-links-list a {
            color: #b0b0b0;
            transition: var(--transition);
        }
        .footer-links-list a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                flex: 1 0 100%;
                margin-top: 15px;
            }
            .hero h1 {
                font-size: 2.7rem;
            }
            .section-title {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--secondary);
                box-shadow: var(--shadow);
            }
            nav.active {
                display: block;
            }
            .nav-list {
                flex-direction: column;
                align-items: stretch;
            }
            .nav-list a {
                padding: 15px 20px;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            main {
                padding: 25px;
            }
            .section {
                padding: 40px 0;
            }
        }
        @media (max-width: 576px) {
            .hero {
                padding: 60px 0;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .section-title {
                font-size: 1.9rem;
            }
            article h2 {
                font-size: 1.7rem;
            }
            .rating-form, .comment-form {
                padding: 0;
            }
        }
