body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f5f2ff;
        }
        header {
            background-color: #4b0082;
            color: white;
            padding: 20px;
            position: relative;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .mobile-menu {
            display: none;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu {
                display: block;
            }
        }
        h1 {
            color: #4b0082;
            border-bottom: 3px solid #ff6b6b;
            padding-bottom: 10px;
        }
        h2 {
            color: #6a0dad;
            margin-top: 30px;
        }
        h3 {
            color: #8a2be2;
        }
        .download-btn {
            display: inline-block;
            background-color: #4CAF50;
            color: white;
            padding: 12px 24px;
            margin: 15px 0;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
        }
        .login-btn {
            display: inline-block;
            background-color: #2196F3;
            color: white;
            padding: 12px 24px;
            margin: 15px 0;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
        }
        .highlight {
            background-color: #fff3e0;
            padding: 10px;
            border-left: 4px solid #ff9800;
        }
        .indian-stat {
            background-color: #e8f5e9;
            padding: 15px;
            border-radius: 8px;
            margin: 15px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 20px auto;
            border-radius: 8px;
        }
        footer {
            background-color: #333;
            color: white;
            padding: 20px;
            margin-top: 40px;
            text-align: center;
        }
        .tag {
            display: inline-block;
            background-color: #6a0dad;
            color: white;
            padding: 5px 10px;
            margin: 5px;
            border-radius: 15px;
            text-decoration: none;
        }
