* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.8;
            color: #333;
            background-color: #f9f5f0;
            padding-bottom: 50px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #e67e22;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: #ffd166;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
        }
        .nav-links a:hover {
            color: #ffd166;
        }
        .daman-link a {
            background-color: #ffd166;
            color: #e67e22;
            padding: 8px 15px;
            border-radius: 5px;
            font-weight: 600;
        }
        .daman-link a:hover {
            background-color: #fff3cd;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #e67e22;
                padding: 20px;
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 1.5rem;
            }
        }
        h1 {
            font-size: 2.5rem;
            color: #e67e22;
            margin: 40px 0 30px;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 2rem;
            color: #d35400;
            margin: 50px 0 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f39c12;
        }
        h3 {
            font-size: 1.5rem;
            color: #e67e22;
            margin: 35px 0 20px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        strong {
            color: #d35400;
        }
        .btn-container {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin: 40px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 15px 30px;
            border: none;
            border-radius: 8px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        .btn-download {
            background-color: #27ae60;
            color: white;
        }
        .btn-download:hover {
            background-color: #219653;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(39,174,96,0.3);
        }
        .btn-login {
            background-color: #3498db;
            color: white;
        }
        .btn-login:hover {
            background-color: #2980b9;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(52,152,219,0.3);
        }
        .img-container {
            text-align: center;
            margin: 40px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        ul {
            margin: 20px 0 30px 40px;
        }
        li {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stats-table th, .stats-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        .stats-table th {
            background-color: #e67e22;
            color: white;
            font-weight: 600;
        }
        .stats-table tr:hover {
            background-color: #faf6f1;
        }
        .review-card {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        .reviewer-name {
            font-weight: 600;
            color: #d35400;
        }
        .review-rating {
            color: #f39c12;
            font-size: 1.2rem;
        }
        .tags-container, .categories-container {
            margin: 30px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .tag, .category {
            padding: 8px 15px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
        }
        .tag {
            background-color: #f1c40f;
            color: #333;
        }
        .tag:hover {
            background-color: #f39c12;
            color: white;
        }
        .category {
            background-color: #3498db;
            color: white;
        }
        .category:hover {
            background-color: #2980b9;
        }
        footer {
            background-color: #333;
            color: white;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #ffd166;
            margin-bottom: 20px;
            border-bottom: 1px solid #555;
            padding-bottom: 10px;
        }
        .footer-section p {
            color: #ddd;
            margin-bottom: 15px;
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #555;
            color: #aaa;
        }
        .section {
            margin-bottom: 60px;
        }
        .highlight {
            background-color: #fff3cd;
            padding: 20px;
            border-left: 5px solid #f39c12;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .desi-icon {
            color: #e67e22;
            margin-right: 8px;
        }
