* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
        }
        :root {
            --primary: #FF5722; 
            --secondary: #388E3C; 
            --accent: #1976D2; 
            --light: #FFFDF5; 
            --dark: #212121; 
            --gold: #FFB300; 
            --spacing: 1.3rem;
            --border-radius: 7px;
            --line-height: 1.95;
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: var(--line-height);
            padding-bottom: 6rem;
        }
        .container {
            width: 93%;
            max-width: 1300px;
            margin: 0 auto;
        }
        header {
            background: linear-gradient(135deg, var(--primary), var(--gold));
            color: white;
            padding: 1.3rem 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.18);
            position: sticky;
            top: 0;
            z-index: 9999;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.1rem;
            font-weight: 800;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
            letter-spacing: 0.7px;
        }
        .logo span {
            color: var(--light);
            font-style: italic;
            font-weight: 600;
        }
        .nav-links {
            display: flex;
            gap: 2.3rem;
            list-style: none;
            margin: 0.6rem 0 0 0;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.08rem;
            transition: all 0.3s ease;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            border-bottom: 2px solid var(--light);
            color: var(--light);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 2.1rem;
            cursor: pointer;
            color: white;
        }
        .btn {
            padding: 1rem 1.9rem;
            border: none;
            border-radius: var(--border-radius);
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            font-size: 1.08rem;
            box-shadow: 0 3px 8px rgba(0,0,0,0.15);
        }
        .btn-download {
            background-color: var(--secondary);
            color: white;
            margin-right: 1.3rem;
        }
        .btn-download:hover {
            background-color: #2E7D32;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(46, 125, 50, 0.3);
        }
        .btn-login {
            background-color: var(--accent);
            color: white;
        }
        .btn-login:hover {
            background-color: #1565C0;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(21, 101, 192, 0.3);
        }
        .btn-container {
            display: flex;
            align-items: center;
        }
        main {
            padding: 4.5rem 0 2.5rem;
        }
        h1 {
            font-size: 3.2rem;
            color: var(--primary);
            margin-bottom: 2.8rem;
            text-align: center;
            text-shadow: 1px 1px 5px rgba(255, 87, 34, 0.25);
            line-height: 1.35;
        }
        h2 {
            font-size: 2.4rem;
            color: var(--secondary);
            margin: 4.5rem 0 2rem;
            padding-bottom: 1.1rem;
            border-bottom: 4px solid var(--primary);
            line-height: 1.45;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--accent);
            margin: 2.8rem 0 1.3rem;
            line-height: 1.55;
        }
        h4 {
            font-size: 1.4rem;
            color: var(--primary);
            margin: 2rem 0 0.9rem;
            line-height: 1.55;
        }
        p {
            margin-bottom: 2rem;
            font-size: 1.18rem;
            text-align: justify;
            line-height: var(--line-height);
        }
        .highlight {
            background-color: rgba(255, 87, 34, 0.18);
            padding: 0.4rem 0.6rem;
            border-radius: 5px;
            font-weight: 700;
            color: var(--primary);
        }
        .cultural-note {
            background-color: rgba(56, 142, 60, 0.12);
            border-left: 5px solid var(--secondary);
            padding: 1.7rem;
            margin: 3rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .cultural-note h4 {
            color: var(--secondary);
            margin-bottom: 0.9rem;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .cultural-note h4::before {
            content: "🇮🇳";
        }
        .img-placeholder {
            width: 100%;
            height: 480px;
            background-color: #F1F8E9;
            border-radius: var(--border-radius);
            margin: 3.5rem 0;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
            box-shadow: 0 5px 15px rgba(0,0,0,0.12);
        }
        .img-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }
        .img-placeholder:hover img {
            transform: scale(1.05);
        }
        .img-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(0,0,0,0.8);
            color: white;
            padding: 1.2rem;
            font-size: 1.1rem;
            text-align: center;
            line-height: 1.7;
        }
        ul, ol {
            margin: 2rem 0 2rem 2.8rem;
        }
        li {
            margin-bottom: 1.1rem;
            font-size: 1.15rem;
            line-height: var(--line-height);
        }
        ul li::marker {
            color: var(--primary);
            font-size: 1.3rem;
        }
        ol li::marker {
            color: var(--accent);
            font-weight: 700;
        }
        .spec-table {
            width: 100%;
            border-collapse: collapse;
            margin: 3rem 0;
            font-size: 1.15rem;
        }
        .spec-table th, .spec-table td {
            padding: 1.3rem;
            text-align: left;
            border-bottom: 1px solid #C8E6C9;
        }
        .spec-table th {
            background-color: var(--secondary);
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
        }
        .spec-table tr:nth-child(even) {
            background-color: rgba(241, 248, 233, 0.5);
        }
        .spec-table tr:hover {
            background-color: rgba(255, 87, 34, 0.07);
        }
        blockquote {
            border-left: 5px solid var(--accent);
            padding: 1.4rem 2rem;
            margin: 2.5rem 0;
            background-color: rgba(25, 118, 210, 0.06);
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        blockquote p {
            font-style: italic;
            color: var(--dark);
            margin-bottom: 0;
            font-size: 1.2rem;
        }
        .recommendation {
            background-color: rgba(255, 87, 34, 0.12);
            padding: 2.2rem;
            border-radius: var(--border-radius);
            margin: 3.5rem 0;
            border-left: 5px solid var(--primary);
            box-shadow: 0 4px 10px rgba(255, 87, 34, 0.1);
        }
        .recommendation h4 {
            color: var(--primary);
            margin-bottom: 1.4rem;
            font-size: 1.5rem;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 5.5rem 0 3rem;
            margin-top: 7rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3.5rem;
        }
        .footer-section h4 {
            font-size: 1.6rem;
            margin-bottom: 2rem;
            color: var(--primary);
            padding-bottom: 0.9rem;
            border-bottom: 2px solid var(--primary);
            display: inline-block;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 1.2rem;
        }
        .footer-links a {
            color: #E0E0E0;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 7px;
        }
        .footer-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
            margin-top: 1.8rem;
        }
        .footer-tag {
            background-color: #37474F;
            padding: 0.7rem 1.4rem;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        .footer-tag a {
            color: #E0E0E0;
            text-decoration: none;
            font-size: 1.05rem;
        }
        .footer-tag:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }
        .footer-tag:hover a {
            color: white;
        }
        .copyright {
            text-align: center;
            margin-top: 4.5rem;
            padding-top: 2.2rem;
            border-top: 1px solid #455A64;
            font-size: 1.1rem;
            color: #B0BEC5;
            line-height: 1.9;
        }
        @media (max-width: 1200px) {
            .nav-links {
                gap: 2rem;
            }
            .btn {
                padding: 0.9rem 1.7rem;
                font-size: 1.05rem;
            }
            h1 {
                font-size: 2.9rem;
            }
            h2 {
                font-size: 2.2rem;
            }
            h3 {
                font-size: 1.7rem;
            }
        }
        @media (max-width: 992px) {
            .header-container {
                justify-content: space-between;
            }
            .nav-links {
                gap: 1.7rem;
            }
            .img-placeholder {
                height: 430px;
            }
            p {
                font-size: 1.15rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: absolute;
                top: 90px;
                left: -100%;
                flex-direction: column;
                background-color: var(--primary);
                width: 100%;
                text-align: center;
                transition: 0.4s ease-in-out;
                box-shadow: 0 12px 18px rgba(0,0,0,0.18);
                padding: 2.8rem 0;
                gap: 2rem;
                z-index: 999;
            }
            .nav-links.active {
                left: 0;
            }
            .btn-container {
                display: none;
            }
            .mobile-btn-container {
                display: flex;
                justify-content: center;
                gap: 1.3rem;
                margin: 2.2rem 0;
                flex-wrap: wrap;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
                margin: 3.5rem 0 1.7rem;
            }
            h3 {
                font-size: 1.6rem;
                margin: 2.3rem 0 1.1rem;
            }
            p {
                font-size: 1.1rem;
                margin-bottom: 1.8rem;
            }
            .img-placeholder {
                height: 380px;
            }
            .img-caption {
                font-size: 1.05rem;
            }
            .cultural-note {
                padding: 1.4rem;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 1.8rem;
            }
            .nav-links {
                top: 80px;
                padding: 2.5rem 0;
                gap: 1.8rem;
            }
            h1 {
                font-size: 2.2rem;
                margin-bottom: 2.3rem;
            }
            h2 {
                font-size: 1.8rem;
                padding-bottom: 0.9rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            p {
                font-size: 1.05rem;
                line-height: 1.9;
            }
            .img-placeholder {
                height: 300px;
                margin: 2.5rem 0;
            }
            .footer-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .btn {
                width: 100%;
                margin-bottom: 1.2rem;
                margin-right: 0;
            }
            .spec-table th, .spec-table td {
                padding: 1rem;
                font-size: 1.05rem;
            }
            ul, ol {
                margin-left: 2rem;
            }
            .recommendation {
                padding: 1.8rem;
            }
        }
