* {
            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: #f9f7f3;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #ff7e5f, #feb47b);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            display: inline-block;
        }
        .logo span {
            color: #2c3e50;
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.3s ease;
        }
        .nav-links li a:hover {
            color: #2c3e50;
        }
        .btn {
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }
        .btn-download {
            background-color: #27ae60;
            color: white;
            border: none;
        }
        .btn-download:hover {
            background-color: #219653;
            transform: translateY(-2px);
        }
        .btn-login {
            background-color: #2c3e50;
            color: white;
            border: none;
            margin-left: 10px;
        }
        .btn-login:hover {
            background-color: #1a252f;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            color: white;
            cursor: pointer;
        }
        main {
            padding: 40px 0;
        }
        h1 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 30px;
            text-align: center;
            line-height: 1.3;
        }
        h2 {
            font-size: 2rem;
            color: #e67e22;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f39c12;
        }
        h3 {
            font-size: 1.5rem;
            color: #34495e;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .intro {
            background-color: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 40px;
        }
        .highlight {
            font-weight: 700;
            color: #e74c3c;
        }
        .desi-tag {
            display: inline-block;
            background-color: #f1c40f;
            color: #2c3e50;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-right: 8px;
            margin-bottom: 10px;
        }
        .section-card {
            background-color: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.03);
            margin-bottom: 30px;
        }
        .landscape-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }
        .landscape-list li {
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #3498db;
        }
        .stat-box {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
        }
        .stat-item {
            background-color: #3498db;
            color: white;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            flex: 1;
            min-width: 150px;
        }
        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        .review-card {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            border-top: 3px solid #e67e22;
        }
        .reviewer {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 5px;
        }
        .star-rating {
            color: #f1c40f;
            margin-bottom: 10px;
        }
        .tag-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }
        .tag-link {
            text-decoration: none;
            color: white;
            background-color: #9b59b6;
            padding: 8px 15px;
            border-radius: 25px;
            font-size: 0.95rem;
            transition: background-color 0.3s ease;
        }
        .tag-link:hover {
            background-color: #8e44ad;
        }
        .category-link {
            text-decoration: none;
            color: white;
            background-color: #27ae60;
            padding: 8px 15px;
            border-radius: 25px;
            font-size: 0.95rem;
            transition: background-color 0.3s ease;
        }
        .category-link:hover {
            background-color: #219653;
        }
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 40px 0;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .footer-section h3 {
            color: #f39c12;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links li a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links li a:hover {
            color: #f39c12;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #34495e;
            font-size: 0.9rem;
            color: #bdc3c7;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #ff7e5f, #feb47b);
                padding: 20px;
                gap: 15px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .stat-box {
                flex-direction: column;
            }
        }
