        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #ff7e00, #ffcc00);
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        .logo span {
            color: #0066cc;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s ease;
        }
        .nav-links a:hover {
            color: #0066cc;
        }
        .daman-link {
            color: #0066cc !important;
            font-weight: 600;
        }
        .hamburger {
            display: none;
            font-size: 24px;
            color: #fff;
            cursor: pointer;
        }
        .cta-buttons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        .btn {
            padding: 12px 25px;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }
        .btn-download {
            background-color: #0066cc;
            color: #fff;
        }
        .btn-download:hover {
            background-color: #004a99;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,102,204,0.3);
        }
        .btn-login {
            background-color: #ff7e00;
            color: #fff;
        }
        .btn-login:hover {
            background-color: #e06c00;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(255,126,0,0.3);
        }
        main {
            padding: 40px 0;
        }
        h1 {
            font-size: 36px;
            color: #ff7e00;
            margin-bottom: 30px;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 28px;
            color: #0066cc;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffcc00;
        }
        h3 {
            font-size: 22px;
            color: #333;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 18px;
            color: #ff7e00;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 16px;
            text-align: justify;
        }
        .highlight {
            font-weight: 600;
            color: #0066cc;
        }
        .desi-note {
            background-color: #fff9e6;
            border-left: 4px solid #ffcc00;
            padding: 15px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .desi-note p {
            margin-bottom: 0;
            font-style: italic;
            color: #5a3e00;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background-color: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            text-align: center;
        }
        .stat-card h4 {
            color: #0066cc;
            margin-bottom: 10px;
        }
        .stat-card p {
            font-size: 24px;
            font-weight: 700;
            color: #ff7e00;
            margin-bottom: 0;
        }
        .faq-container {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 30px;
            margin: 30px 0;
        }
        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
        }
        .faq-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .faq-question {
            font-weight: 600;
            color: #0066cc;
            margin-bottom: 5px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            color: #555;
        }
        footer {
            background-color: #333;
            color: #fff;
            padding: 50px 0 20px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-column h3 {
            color: #ffcc00;
            margin-bottom: 20px;
            font-size: 20px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #ffcc00;
        }
        .recommendation {
            background-color: #444;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        .recommendation h3 {
            color: #ff7e00;
            margin-bottom: 15px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #555;
            font-size: 14px;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #ff7e00;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            .cta-buttons {
                flex-direction: column;
            }
            .btn {
                width: 100%;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 20px;
            }
            h1 {
                font-size: 24px;
            }
            .stat-card p {
                font-size: 20px;
            }
        }
