* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f0fbfc;
            color: #333;
            line-height: 1.4;
            text-align: center;
        }
		a {
			color: inherit;
			-webkit-text-decoration: inherit;
			text-decoration: inherit;
		}

        .logo {
            width: 80px;
            height: 80px;
            background-color: #45c4c8;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 20px auto;
        }

        .logo i {
            color: white;
            font-size: 2rem;
        }

        h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
			letter-spacing:0.8rem;
        }

        h3 {
            color: #45c4c8;
            font-size: 1.2rem;
            margin-bottom: 10px;
            opacity: 0.8;
        }

        .topdes {
            font-size: 0.9rem;
            color: #888;
            padding-bottom: 30px;
        }

        .btn-group {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .btn {
            background-color: #45c4c8;
            color: white;
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1rem;
            transition: background-color 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn:hover {
            background-color: #3aa8ab;
        }

        .stats {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .stat-item {
            font-size: 1.1rem;
            color: #45c4c8;
        }

        .stat-item span {
            display: block;
            font-size: 2rem;
            font-weight: bold;
        }
		.city{
			background-color: #ebf7ff;
			display: flex;
			flex-direction: column;
			align-items: center;
			padding: 20px;
		}
        .city-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 18px;
            max-width: 800px;
            width: 100%;
            margin-top: 20px;
        }

        .city-card {
            background-color: white;
            border-radius: 16px;
            padding: 15px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .city-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .city-icon {
            font-size: 40px;
            margin-bottom: 10px;
        }

        .city-name {
            font-size: 16px;
            color: #333;
        }

        footer {
			background-color: #ebf7ff;
            font-size: 0.8rem;
            color: #888;
            padding-top: 20px;
        }
		
		footer p {
            font-size: 0.9rem;
            color: #888;
            padding-bottom: 10px;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }

            .stats {
                gap: 15px;
            }

            .stat-item {
                font-size: 0.9rem;
            }

            .stat-item span {
                font-size: 1.5rem;
            }
        }